diff options
| author | George Hazan <ghazan@miranda.im> | 2023-02-10 12:54:20 +0300 | 
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2023-02-10 12:54:20 +0300 | 
| commit | ef0ba268b340eaf1217a96d763342c25668588b4 (patch) | |
| tree | 17396375e213043c2ce1c59b50b7f30488dcb83d /protocols/SkypeWeb/src | |
| parent | 33733576589076f080ddfa000b899843016a2597 (diff) | |
Protocols: preventing recursive contact deletion
Diffstat (limited to 'protocols/SkypeWeb/src')
| -rw-r--r-- | protocols/SkypeWeb/src/skype_chatrooms.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_chatrooms.cpp b/protocols/SkypeWeb/src/skype_chatrooms.cpp index fabd66162c..2d1fc6c3b8 100644 --- a/protocols/SkypeWeb/src/skype_chatrooms.cpp +++ b/protocols/SkypeWeb/src/skype_chatrooms.cpp @@ -233,7 +233,7 @@ INT_PTR CSkypeProto::OnLeaveChatRoom(WPARAM hContact, LPARAM)  		PushRequest(new KickUserRequest(_T2A(idT), m_szSkypename));
 -		db_delete_contact(hContact);
 +		db_delete_contact(hContact, true);
  	}
  	return 0;
  }
  | 
