about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/notifications.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-12-13 21:11:18 +0100
committerThibG <thib@sitedethib.com>2018-12-13 21:58:48 +0100
commitc20c6c202904afee1db514be55b4b943d78df315 (patch)
treeeb8c01e438e5ec5ea5904712feebb91e6de25762 /app/javascript/flavours/glitch/reducers/notifications.js
parent1e656c36322f4f941b8d432243454c16273d25b6 (diff)
[Glitch] Fix hasMore in notifications
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/notifications.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/notifications.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/reducers/notifications.js b/app/javascript/flavours/glitch/reducers/notifications.js
index 0b816e85e..b65c51f32 100644
--- a/app/javascript/flavours/glitch/reducers/notifications.js
+++ b/app/javascript/flavours/glitch/reducers/notifications.js
@@ -96,7 +96,7 @@ const expandNormalizedNotifications = (state, notifications, next) => {
     }
 
     if (!next) {
-      mutable.set('hasMore', true);
+      mutable.set('hasMore', false);
     }
 
     mutable.set('isLoading', false);