diff options
Diffstat (limited to 'src/modules/metacontacts/meta_menu.cpp')
-rw-r--r-- | src/modules/metacontacts/meta_menu.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/modules/metacontacts/meta_menu.cpp b/src/modules/metacontacts/meta_menu.cpp index a341c8421b..acdb6d3dd7 100644 --- a/src/modules/metacontacts/meta_menu.cpp +++ b/src/modules/metacontacts/meta_menu.cpp @@ -129,9 +129,6 @@ void Meta_RemoveContactNumber(DBCachedContact *cc, int number) // make sure this contact thinks it's part of this metacontact
if (hContact == cc->contactID) {
- // remove link to meta contact
- db_unset(hContact, META_PROTO, "Handle");
-
// stop ignoring, if we were
if (options.suppress_status)
CallService(MS_IGNORE_UNIGNORE, hContact, IGNOREEVENT_USERONLINE);
@@ -151,9 +148,6 @@ void Meta_RemoveContactNumber(DBCachedContact *cc, int number) strcpy(buffer, "Status"); strcat(buffer, idStr);
db_unset(cc->contactID, META_PROTO, buffer);
- strcpy(buffer, "Handle"); strcat(buffer, idStr);
- db_unset(cc->contactID, META_PROTO, buffer);
-
strcpy(buffer, "StatusString"); strcat(buffer, idStr);
db_unset(cc->contactID, META_PROTO, buffer);
|