summaryrefslogtreecommitdiff
path: root/src/mir_core
diff options
context:
space:
mode:
Diffstat (limited to 'src/mir_core')
-rw-r--r--src/mir_core/src/db.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mir_core/src/db.cpp b/src/mir_core/src/db.cpp
index 9678415494..57b22754c3 100644
--- a/src/mir_core/src/db.cpp
+++ b/src/mir_core/src/db.cpp
@@ -98,7 +98,7 @@ MIR_CORE_DLL(MCONTACT) db_add_contact(void)
return hNew;
}
-MIR_CORE_DLL(int) db_delete_contact(MCONTACT hContact, bool bFromProto)
+MIR_CORE_DLL(int) db_delete_contact(MCONTACT hContact, uint32_t flags)
{
ptrW wszPhoto(db_get_wsa(hContact, "ContactPhoto", "File"));
if (wszPhoto != nullptr) {
@@ -109,9 +109,9 @@ MIR_CORE_DLL(int) db_delete_contact(MCONTACT hContact, bool bFromProto)
#endif
}
- if (!bFromProto)
+ if (!(flags & CDF_FROM_SERVER))
if (auto *ppro = Proto_GetInstance(hContact))
- if (!ppro->OnContactDeleted(hContact))
+ if (!ppro->OnContactDeleted(hContact, flags))
return 1;
Netlib_Logf(nullptr, "Contact deleted: %d", hContact);