diff --git a/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js b/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js
index 848c38b..47808f2 100644
--- a/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js
+++ b/chrome/content/sogo-connector/general/sync.addressbook.groupdav.js
@@ -1457,8 +1457,13 @@ new:
                 let total = (this.localUploads
                              + this.serverDownloadsCount
                              + this.serverDeletes.length);
-                if (total > 0)
-                    this.progressMgr.unregisterAddressBook(this.gURL);
+                if (total > 0) {
+                    // allow a delay before hiding the progressNotification
+                    var that = this;
+                    window.setTimeout(function() {
+                            that.progressMgr.unregisterAddressBook(that.gURL);
+                        }, 1000);
+                }
                 dump("  " + this.mCounter +"/sync with " + this.gURL + " has ended.\n\n");
                 this.context.requests[this.gURL] = null;
             }
