aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib/Reaction.js
diff options
context:
space:
mode:
authorLibravatar Amine Mouafik <amine@mouafik.fr>2019-08-05 19:06:51 +0700
committerLibravatar Amine Mouafik <amine@mouafik.fr>2019-08-05 19:06:51 +0700
commit19ff9d112fda59d114df1079622a3d365a51c14a (patch)
tree90e3e09e051a96a78ec80cd34363a062eac089a3 /src/stores/lib/Reaction.js
parentMention releases in README (diff)
parentbump version to 5.2.1-beta.1 (diff)
downloadferdium-app-19ff9d112fda59d114df1079622a3d365a51c14a.tar.gz
ferdium-app-19ff9d112fda59d114df1079622a3d365a51c14a.tar.zst
ferdium-app-19ff9d112fda59d114df1079622a3d365a51c14a.zip
Merge remote-tracking branch 'upstream/master'
# Conflicts: # src/components/layout/AppLayout.js
Diffstat (limited to 'src/stores/lib/Reaction.js')
-rw-r--r--src/stores/lib/Reaction.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stores/lib/Reaction.js b/src/stores/lib/Reaction.js
index f2642908f..f8009b7f6 100644
--- a/src/stores/lib/Reaction.js
+++ b/src/stores/lib/Reaction.js
@@ -13,15 +13,15 @@ export default class Reaction {
13 13
14 start() { 14 start() {
15 if (!this.isRunning) { 15 if (!this.isRunning) {
16 this.dispose = autorun(() => this.reaction()); 16 this.dispose = autorun(this.reaction);
17 this.isActive = true; 17 this.isRunning = true;
18 } 18 }
19 } 19 }
20 20
21 stop() { 21 stop() {
22 if (this.isRunning) { 22 if (this.isRunning) {
23 this.dispose(); 23 this.dispose();
24 this.isActive = false; 24 this.isRunning = false;
25 } 25 }
26 } 26 }
27} 27}