about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/favourites/index.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-09-29 16:27:00 +0200
committerThibaut Girka <thib@sitedethib.com>2019-09-30 15:58:29 +0200
commita2bf1f9f5698f5fb06267d9708e2d356a2a7786f (patch)
treec9f63013808af2d8d7f2cc152613a3199bf8b348 /app/javascript/flavours/glitch/features/favourites/index.js
parent15973b77d6c7fc071e00c59713bff831ffb10bdb (diff)
[Glitch] Fix follower/following lists resetting on back-navigation in web UI
Port 9683e1dcf8bbddb07b818960abf254248be3575c to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/favourites/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/favourites/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/favourites/index.js b/app/javascript/flavours/glitch/features/favourites/index.js
index 5c33c8677..7afadf12e 100644
--- a/app/javascript/flavours/glitch/features/favourites/index.js
+++ b/app/javascript/flavours/glitch/features/favourites/index.js
@@ -31,7 +31,9 @@ class Favourites extends ImmutablePureComponent {
   };
 
   componentWillMount () {
-    this.props.dispatch(fetchFavourites(this.props.params.statusId));
+    if (!this.props.accountIds) {
+      this.props.dispatch(fetchFavourites(this.props.params.statusId));
+    }
   }
 
   componentWillReceiveProps (nextProps) {