From c6804efd7ba31e209cf8a6bb76dea84f7f1d8eee Mon Sep 17 00:00:00 2001 From: Piotr Piastucki Date: Mon, 28 Dec 2015 13:51:32 +0000 Subject: MSN should now parse Skype client version of other contacts correctly. git-svn-id: http://svn.miranda-ng.org/main/trunk@15951 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/MSN/src/msn_libstr.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'protocols/MSN/src/msn_libstr.cpp') diff --git a/protocols/MSN/src/msn_libstr.cpp b/protocols/MSN/src/msn_libstr.cpp index 741ccb41b6..2e1c52ca98 100644 --- a/protocols/MSN/src/msn_libstr.cpp +++ b/protocols/MSN/src/msn_libstr.cpp @@ -98,7 +98,10 @@ void parseWLID(char* wlid, char** net, char** email, char** inst) col = strchr(wlid, ';'); if (col) { *col = 0; - if (inst) *inst = col + 1; + if (inst) { + *inst = col + 1; + if (strncmp(*inst, "epid=", 5)==0) *inst+=5; + } } else if (inst) *inst = NULL; -- cgit v1.2.3