diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-08-20 04:36:27 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-08-20 04:36:27 +0000 |
commit | 51eb51ae0c417a76dbbd9533639e533d63597842 (patch) | |
tree | 0cbd60ba4f52403493bc77482d21722388158240 /MySpace/proto.cpp | |
parent | 0841bef9c8e05efa48ebe9c703fbd8ce8fb1a278 (diff) |
fix for zap menu not showing for new contacts (thx plastic)
lookup user info when adding permanently to list or via contact search
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@327 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'MySpace/proto.cpp')
-rw-r--r-- | MySpace/proto.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MySpace/proto.cpp b/MySpace/proto.cpp index 8dcd810..8a04e6a 100644 --- a/MySpace/proto.cpp +++ b/MySpace/proto.cpp @@ -265,6 +265,7 @@ int AddToList(WPARAM wParam, LPARAM lParam) { msg_add.add_string("reason", "");
SendMessage(msg_add);
+
}
}
@@ -274,6 +275,8 @@ int AddToList(WPARAM wParam, LPARAM lParam) { } else {
DBDeleteContactSetting(hContact, "CList", "NotOnList");
DBDeleteContactSetting(hContact, "CList", "Hidden");
+
+ LookupUID(mpsr->uid);
}
return (int)hContact;
|