Skip to content

Commit

Permalink
fixes #3434 (Отсутствуют всплывающие окна для хайлайтов)
Browse files Browse the repository at this point in the history
  • Loading branch information
georgehazan authored and tweimer committed Apr 17, 2023
1 parent 4d3e1d1 commit 8f12a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/TabSRMM/src/chat_tools.cpp
Expand Up @@ -152,7 +152,7 @@ BOOL DoPopup(SESSION_INFO *si, GCEVENT *gce)
char *szProto = dat ? dat->m_szProto : si->pszModule;
if (szProto != nullptr) {
int dwStatus = Proto_GetStatus(szProto);
if (!(dwStatus == 0 || dwStatus <= ID_STATUS_OFFLINE))
if (dwStatus == 0 || dwStatus <= ID_STATUS_OFFLINE)
return 0;
}

Expand Down

0 comments on commit 8f12a14

Please sign in to comment.