aboutsummaryrefslogtreecommitdiffstats
path: root/src/models
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-01-09 12:50:45 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-01-09 12:50:45 +0100
commit348f431bd802db487261d08ad3b5da970bd1816c (patch)
treea2000977666f27bcc707d324255346b2eb381f79 /src/models
parentSkip for premium users (diff)
downloadferdium-app-348f431bd802db487261d08ad3b5da970bd1816c.tar.gz
ferdium-app-348f431bd802db487261d08ad3b5da970bd1816c.tar.zst
ferdium-app-348f431bd802db487261d08ad3b5da970bd1816c.zip
Ignore ERR_NETWORK_CHANGED error
Diffstat (limited to 'src/models')
-rw-r--r--src/models/Service.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/Service.js b/src/models/Service.js
index 7a955a6d9..3b8bebdef 100644
--- a/src/models/Service.js
+++ b/src/models/Service.js
@@ -202,7 +202,7 @@ export default class Service {
202 202
203 this.webview.addEventListener('did-fail-load', (event) => { 203 this.webview.addEventListener('did-fail-load', (event) => {
204 debug('Service failed to load', this.name, event); 204 debug('Service failed to load', this.name, event);
205 if (event.isMainFrame && event.errorCode !== -3) { 205 if (event.isMainFrame && event.errorCode !== -27 && event.errorCode !== -3) {
206 this.isError = true; 206 this.isError = true;
207 this.errorMessage = event.errorDescription; 207 this.errorMessage = event.errorDescription;
208 this.isLoading = false; 208 this.isLoading = false;