summaryrefslogtreecommitdiff
path: root/protocols/MRA/src/MraRTFMsg.cpp
diff options
context:
space:
mode:
authorRozhuk Ivan <rozhuk.im@gmail.com>2015-07-11 02:57:04 +0000
committerRozhuk Ivan <rozhuk.im@gmail.com>2015-07-11 02:57:04 +0000
commitbf4ae174716355279cb4f56c396bd436953215e6 (patch)
tree36032140b2e747d7efc878e64f50c6c4642cd176 /protocols/MRA/src/MraRTFMsg.cpp
parent0c25d82fbea363b8ca544a49dbb1d02c33fbbb8f (diff)
MRA: fix flash animation messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@14531 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA/src/MraRTFMsg.cpp')
-rw-r--r--protocols/MRA/src/MraRTFMsg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MRA/src/MraRTFMsg.cpp b/protocols/MRA/src/MraRTFMsg.cpp
index 41473cfef3..61d305d08e 100644
--- a/protocols/MRA/src/MraRTFMsg.cpp
+++ b/protocols/MRA/src/MraRTFMsg.cpp
@@ -100,7 +100,7 @@ DWORD MraTextToRTFData(LPSTR lpszMessage, size_t dwMessageSize, LPSTR lpszMessag
bool MraIsMessageFlashAnimation(const CMStringW &lpwszMessage)
{
- int iStart = lpwszMessage.Find(_T("<SMILE>id = flas"));
+ int iStart = lpwszMessage.Find(_T("<SMILE>id=flas"));
if (iStart != -1)
if (lpwszMessage.Find(_T("'</SMILE>"), iStart) != -1)
return true;