Decrease update interval to 60 sec

It's the same as what the rest uses and it should decrease the load on our servers a lot
This commit is contained in:
Jaime van Kessel 2021-04-30 10:51:15 +02:00
parent 653dd42e87
commit c800c2850c
No known key found for this signature in database
GPG key ID: 3710727397403C91

View file

@ -40,7 +40,7 @@ class Account(QObject):
"""
# The interval in which sync services are automatically triggered
SYNC_INTERVAL = 30.0 # seconds
SYNC_INTERVAL = 60.0 # seconds
Q_ENUMS(SyncState)
loginStateChanged = pyqtSignal(bool)