Browse Source

fix: increase timer for checking offline messages timeout (again)

Should make duplicated messages even less common (#2726)
Increased ~proportionally to change in
76d8e19320
pull/3316/head
Zetok Zalbavar 9 years ago
parent
commit
a77afca1ec
No known key found for this signature in database
GPG Key ID: C953D3880212068A
  1. 3
      src/widget/widget.cpp

3
src/widget/widget.cpp

@ -120,7 +120,8 @@ void Widget::init() @@ -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);

Loading…
Cancel
Save