From db478b36ca455438af478bc668d987b2a87a0af0 Mon Sep 17 00:00:00 2001 From: ketmar Date: Mon, 9 Apr 2018 06:44:52 +0000 Subject: [PATCH] oops! wrong condition FossilOrigin-Name: 0aa834ce164d5e5723f2f8128013220cbd544c7a4115698bc4f7d722b4876204 --- bioacid.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bioacid.d b/bioacid.d index 698435a..abe5472 100644 --- a/bioacid.d +++ b/bioacid.d @@ -1047,7 +1047,7 @@ private: if (auto ct = fpk in contacts) { if (ct.status != cst) { conwriteln("status for friend <", ct.info.nick, "> changed to ", cst); - ct.status = (ct.kfd ? cst : ContactStatus.Offline); + ct.status = (!ct.kfd ? cst : ContactStatus.Offline); //if (ct.status != ContactStatus.Offline && ct.status != ContactStatus.Connecting) ct.processResendQueue(); glconPostScreenRepaint(); } -- 2.11.4.GIT