diff options
author | George Hazan <george.hazan@gmail.com> | 2025-02-11 17:18:41 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2025-02-11 17:18:46 +0300 |
commit | 924e1a992d88c3f0f2a7cc25b83a8b94c58329b6 (patch) | |
tree | 2eea38e0b38e95feb573e4ead733e643c7aadf99 /plugins/Scriver/src/msglog.cpp | |
parent | ba3589e4bd73f442e42bf3987fc033df71469575 (diff) |
Skype: fix for occasional crash
Diffstat (limited to 'plugins/Scriver/src/msglog.cpp')
-rw-r--r-- | plugins/Scriver/src/msglog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Scriver/src/msglog.cpp b/plugins/Scriver/src/msglog.cpp index f3729e9629..16b9533dd5 100644 --- a/plugins/Scriver/src/msglog.cpp +++ b/plugins/Scriver/src/msglog.cpp @@ -44,7 +44,7 @@ bool DbEventIsShown(const DB::EventInfo &dbei) switch (dbei.eventType) {
case EVENTTYPE_JABBER_CHATSTATES:
case EVENTTYPE_JABBER_PRESENCE:
- return 0;
+ return false;
}
return dbei.isSrmm();
|