aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-07-11 17:04:44 +0100
committerLibravatar GitHub <noreply@github.com>2022-07-11 17:04:44 +0100
commit7c72ffceeaf3daedf9eef2977ed8840c85a62beb (patch)
treef590259ff0b1f1b626cbe89b60b8ee9c25de18e3 /src/stores
parentrefactor: local server import/export (diff)
downloadferdium-app-7c72ffceeaf3daedf9eef2977ed8840c85a62beb.tar.gz
ferdium-app-7c72ffceeaf3daedf9eef2977ed8840c85a62beb.tar.zst
ferdium-app-7c72ffceeaf3daedf9eef2977ed8840c85a62beb.zip
Fix blank screen after in-app update on Windows (#464)
Fix blank screen after in-app update on Windows #460
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/AppStore.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts
index ed6d0e263..7f281a8ca 100644
--- a/src/stores/AppStore.ts
+++ b/src/stores/AppStore.ts
@@ -220,6 +220,7 @@ export default class AppStore extends TypedStore {
220 if (!url) return; 220 if (!url) return;
221 221
222 url = url.replace(/\/$/, ''); 222 url = url.replace(/\/$/, '');
223 url = url.replace(/\s?--(updated)/, '');
223 224
224 this.stores.router.push(url); 225 this.stores.router.push(url);
225 }); 226 });