Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix: increase timer for checking offline messages timeout (again)
Browse files Browse the repository at this point in the history
Should make duplicated messages even less common (#2726)
Increased ~proportionally to change in
76d8e19
  • Loading branch information
zetok committed Jun 3, 2016
1 parent 0a976c7 commit a77afca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/widget/widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ void Widget::init()
timer = new QTimer();
timer->start(1000);
offlineMsgTimer = new QTimer();
offlineMsgTimer->start(15000);
// FIXME: ↓ make a proper fix instead of increasing timeout into ∞
offlineMsgTimer->start(2*60*1000);

icon_size = 15;
statusOnline = new QAction(this);
Expand Down

0 comments on commit a77afca

Please sign in to comment.