Don't always show an error on manual contact sync

This commit is contained in:
Scott Nonnenberg 2021-04-08 10:09:54 -07:00 committed by Josh Perez
parent a82fa86176
commit e0415de893
5 changed files with 60 additions and 31 deletions

View file

@ -312,6 +312,10 @@
await window.makeSyncRequest();
this.onsuccess();
} catch (error) {
window.log.error(
'settings sync timeout error:',
error && error.stack ? error.stack : error
);
this.ontimeout();
}
},