You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In function checkResyncDue (in src/Addressbook.php), there is a check if it is a long time since last sync.
When a new addressbook is created in the database, last_updated is set to 0. This results in checkResyncDue always beeing larger than zero (in fact it will return current timestamp pluss the value set for refresh_time), which again results that the first sync isn't done before the user adds a contact to the address book.
RCMCardDAV Version: v4.0.0
RCM Version: Docker Image roundcube/roundcubemail:1.4.x-apache
In function checkResyncDue (in src/Addressbook.php), there is a check if it is a long time since last sync.
When a new addressbook is created in the database, last_updated is set to 0. This results in checkResyncDue always beeing larger than zero (in fact it will return current timestamp pluss the value set for refresh_time), which again results that the first sync isn't done before the user adds a contact to the address book.
I suggest to change line 2095 from:
to:
This way one can be sure that first access will result in a sync of the addressbook.
The text was updated successfully, but these errors were encountered: