From 5d599aa9795f9d816c55378ab6df0a1a691ceed0 Mon Sep 17 00:00:00 2001 From: Joshua Fontany Date: Sun, 25 Jul 2021 17:21:26 -0700 Subject: [PATCH] call self.displayError --- core/modules/syncer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/syncer.js b/core/modules/syncer.js index d5eae1f48..14dc4f572 100644 --- a/core/modules/syncer.js +++ b/core/modules/syncer.js @@ -269,7 +269,7 @@ Syncer.prototype.getStatus = function(callback) { // Get login status this.syncadaptor.getStatus(function(err,isLoggedIn,username,isReadOnly,isAnonymous) { if(err) { - self.logger.alert(err); + self.displayError("Get Status Error",err); } else { // Set the various status tiddlers self.wiki.addTiddler({title: self.titleIsReadOnly,text: isReadOnly ? "yes" : "no"});