From cd4272ca22d47cdf673bfb0e5ec353acca3d9569 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 16 Jul 2022 21:23:06 +0300 Subject: Contact_IsGroupChat - a helper to detect chat rooms --- plugins/Scriver/src/msgs.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/Scriver/src') diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index fbf8f9e8e0..38bb0461cb 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -297,10 +297,10 @@ static int PrebuildContactMenu(WPARAM hContact, LPARAM) bool bEnabled = false; char *szProto = Proto_GetBaseAccountName(hContact); - if ( szProto ) { + if (szProto) { // leave this menu item hidden for chats - if ( !db_get_b(hContact, szProto, "ChatRoom", 0)) - if ( CallProtoService( szProto, PS_GETCAPS, PFLAGNUM_1, 0) & PF1_IMSEND) + if (!Contact_IsGroupChat(hContact, szProto)) + if (CallProtoService(szProto, PS_GETCAPS, PFLAGNUM_1, 0) & PF1_IMSEND) bEnabled = true; } -- cgit v1.2.3