1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00

Fix syncer error handling for getStatus (#5914)

This commit is contained in:
Joshua Fontany 2021-07-30 08:21:02 -07:00 committed by GitHub
parent 3c86cf7d2e
commit 0413c3a38e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,7 @@ Syncer.prototype.getStatus = function(callback) {
// Get login status // Get login status
this.syncadaptor.getStatus(function(err,isLoggedIn,username,isReadOnly,isAnonymous) { this.syncadaptor.getStatus(function(err,isLoggedIn,username,isReadOnly,isAnonymous) {
if(err) { if(err) {
self.logger.alert(err); self.displayError("Get Status Error",err);
} else { } else {
// Set the various status tiddlers // Set the various status tiddlers
self.wiki.addTiddler({title: self.titleIsReadOnly,text: isReadOnly ? "yes" : "no"}); self.wiki.addTiddler({title: self.titleIsReadOnly,text: isReadOnly ? "yes" : "no"});