diff options
author | George Hazan <george.hazan@gmail.com> | 2015-02-08 16:01:50 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-02-08 16:01:50 +0000 |
commit | f3a873e47ed64d570fd6c678a1d815b13711d017 (patch) | |
tree | bba4e293d4ba0a2eb91e4b75608de328f61e3b07 /protocols/WhatsApp/src/WhatsAPI++ | |
parent | 149298bd03dcfce00815d798c9f670e8ea24e7e0 (diff) |
fix for sending contacts into chats
git-svn-id: http://svn.miranda-ng.org/main/trunk@12056 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/WhatsAPI++')
-rw-r--r-- | protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp b/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp index 60e585e801..16fafbf871 100644 --- a/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp +++ b/protocols/WhatsApp/src/WhatsAPI++/WAConnection.cpp @@ -470,7 +470,7 @@ void WAConnection::parseMessage(ProtocolTreeNode *messageNode) throw (WAExceptio break;
}
if (!number.empty())
- fmessage.remote_resource = number;
+ fmessage.media_url = number;
}
}
}
|