1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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

Should make duplicated messages even less common (#2726)
Increased ~proportionally to change in
76d8e19320
This commit is contained in:
Zetok Zalbavar 2016-05-17 16:42:25 +01:00
parent 0a976c7a50
commit a77afca1ec
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -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);