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 76d8e19320d2f15aeb019f72ecaaac2d6a23feab
This commit is contained in:
parent
0a976c7a50
commit
a77afca1ec
@ -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…
x
Reference in New Issue
Block a user