diff options
author | George Hazan <george.hazan@gmail.com> | 2024-01-23 19:05:51 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-01-23 19:05:51 +0300 |
commit | 60fec7a89a7870d52ebd76315193b105973b1219 (patch) | |
tree | 8df3b928516934d478367791bf5b8d2f4b92a930 /protocols/Gadu-Gadu/src/services.cpp | |
parent | 14b6b214743b1913258fc03c21f5e0841a66c2fd (diff) |
fixes #4104 (Удаление серверной истории)
Diffstat (limited to 'protocols/Gadu-Gadu/src/services.cpp')
-rw-r--r-- | protocols/Gadu-Gadu/src/services.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Gadu-Gadu/src/services.cpp b/protocols/Gadu-Gadu/src/services.cpp index 392e9b0d66..b5e9ae144f 100644 --- a/protocols/Gadu-Gadu/src/services.cpp +++ b/protocols/Gadu-Gadu/src/services.cpp @@ -376,7 +376,7 @@ INT_PTR GaduProto::getmyawaymsg(WPARAM wParam, LPARAM lParam) INT_PTR GaduProto::leavechat(WPARAM hContact, LPARAM)
{
if (hContact)
- db_delete_contact(hContact, true);
+ db_delete_contact(hContact, CDF_FROM_SERVER);
return 0;
}
|