aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-02-08 10:09:38 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-02-08 10:09:38 +0100
commit20ad3f8836e4a22a918b02601f7afffc71ccf7f2 (patch)
tree4a1cf282c8d760d12b83caf10a9268e07cb127ef /src/stores
parentfix(App): Bugfix Fix memory leak in recipe polling loop (diff)
downloadferdium-app-20ad3f8836e4a22a918b02601f7afffc71ccf7f2.tar.gz
ferdium-app-20ad3f8836e4a22a918b02601f7afffc71ccf7f2.tar.zst
ferdium-app-20ad3f8836e4a22a918b02601f7afffc71ccf7f2.zip
[MINOR] fix linting errors
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/ServicesStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/ServicesStore.js b/src/stores/ServicesStore.js
index 349a609a1..99ffe5439 100644
--- a/src/stores/ServicesStore.js
+++ b/src/stores/ServicesStore.js
@@ -590,8 +590,8 @@ export default class ServicesStore extends Store {
590 590
591 if (service) { 591 if (service) {
592 if (service.timer !== null) { 592 if (service.timer !== null) {
593 clearTimeout(service.timer) 593 clearTimeout(service.timer);
594 } 594 }
595 595
596 const loop = () => { 596 const loop = () => {
597 if (!service.webview) return; 597 if (!service.webview) return;