Commit 03cf5d2c authored by Grigory Fedorov's avatar Grigory Fedorov

Task bar icon should not be updated if turned off. #483

parent e427377b
......@@ -354,6 +354,10 @@ public class NotificationManager implements OnInitializedListener, OnAccountChan
}
private void updatePersistentNotification() {
if (!SettingsManager.eventsPersistent()) {
return;
}
int waiting = 0;
int connecting = 0;
int connected = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment