diff --git a/js/modules/loki_app_dot_net_api.js b/js/modules/loki_app_dot_net_api.js index a3aca1d10..da8acc12b 100644 --- a/js/modules/loki_app_dot_net_api.js +++ b/js/modules/loki_app_dot_net_api.js @@ -499,7 +499,10 @@ class LokiAppDotNetServerAPI { try { response = options.textResponse ? respStr : JSON.parse(respStr); } catch (e) { - log.warn(`_sendToProxy Could not parse inner JSON [${respStr}]`, endpoint); + log.warn( + `_sendToProxy Could not parse inner JSON [${respStr}]`, + endpoint + ); } } else { log.warn( @@ -959,13 +962,13 @@ class LokiPublicChannelAPI { `LokiPublicChannel open ${this.channelId} on ${ this.serverAPI.baseServerUrl }` - ) + ); if (this.running) { log.warn( `LokiPublicChannel already open ${this.channelId} on ${ this.serverAPI.baseServerUrl }` - ) + ); } this.running = true; if (!this.timers.channel) { @@ -988,13 +991,13 @@ class LokiPublicChannelAPI { `LokiPublicChannel close ${this.channelId} on ${ this.serverAPI.baseServerUrl }` - ) + ); if (!this.running) { log.warn( `LokiPublicChannel already open ${this.channelId} on ${ this.serverAPI.baseServerUrl }` - ) + ); } this.running = false; if (this.timers.channel) {