summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-12-23 19:36:50 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-12-23 19:36:50 +0300
commited35a5d6e9dd02b3f88f34dc07dc7c9f29666fe7 (patch)
treed7a5786259cca1494c8d9f9465ad6a1cb5809f78 /protocols
parent661de98eb4c505a1615199ea6ecd7f6e44cff3f7 (diff)
SkypeWeb: group chats should be sent to offline upon disconnect
Diffstat (limited to 'protocols')
-rw-r--r--protocols/SkypeWeb/src/skype_proto.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_proto.cpp b/protocols/SkypeWeb/src/skype_proto.cpp
index 34c9adcf27..e730e71922 100644
--- a/protocols/SkypeWeb/src/skype_proto.cpp
+++ b/protocols/SkypeWeb/src/skype_proto.cpp
@@ -97,7 +97,7 @@ CSkypeProto::~CSkypeProto()
void CSkypeProto::OnModulesLoaded()
{
- setAllContactStatuses(ID_STATUS_OFFLINE, true);
+ setAllContactStatuses(ID_STATUS_OFFLINE, false);
HookProtoEvent(ME_MSG_PRECREATEEVENT, &CSkypeProto::OnPreCreateMessage);
@@ -281,7 +281,7 @@ int CSkypeProto::SetStatus(int iNewStatus)
m_impl.m_heartBeat.StopSafe();
if (!Miranda_IsTerminated())
- setAllContactStatuses(ID_STATUS_OFFLINE, true);
+ setAllContactStatuses(ID_STATUS_OFFLINE, false);
return 0;
}
else {