aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-24 15:19:10 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-24 15:19:10 +0200
commit102dc65cfec21d79542ff6b01a3ead121505251f (patch)
tree4afdb65b3f6c2741154798276c92057caf30dcf0 /src/stores/AppStore.js
parentRemove Analytics (diff)
downloadferdium-app-102dc65cfec21d79542ff6b01a3ead121505251f.tar.gz
ferdium-app-102dc65cfec21d79542ff6b01a3ead121505251f.tar.zst
ferdium-app-102dc65cfec21d79542ff6b01a3ead121505251f.zip
Fix lint
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 6ce79f2e2..c6724c20f 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -59,7 +59,7 @@ export default class AppStore extends Store {
59 @observable isOnline = navigator.onLine; 59 @observable isOnline = navigator.onLine;
60 60
61 @observable authRequestFailed = false; 61 @observable authRequestFailed = false;
62 62
63 @observable timeSuspensionStart; 63 @observable timeSuspensionStart;
64 64
65 @observable timeOfflineStart; 65 @observable timeOfflineStart;
@@ -206,8 +206,6 @@ export default class AppStore extends Store {
206 setTimeout(() => { 206 setTimeout(() => {
207 window.location.reload(); 207 window.location.reload();
208 }, ms('2s')); 208 }, ms('2s'));
209
210 statsEvent('resumed-app');
211 } 209 }
212 }); 210 });
213 211
@@ -222,8 +220,6 @@ export default class AppStore extends Store {
222 220
223 localStorage.setItem(CATALINA_NOTIFICATION_HACK_KEY, true); 221 localStorage.setItem(CATALINA_NOTIFICATION_HACK_KEY, true);
224 } 222 }
225
226 statsEvent('app-start');
227 } 223 }
228 224
229 @computed get cacheSize() { 225 @computed get cacheSize() {