diff --git a/resources/vue/store/blubber.js b/resources/vue/store/blubber.js
index 9cc474a5b1d9c52514b5041ebc07e00b910da63b..d0bd7f63e4cc6aa8984c9a34f8d5f52923c4a634 100644
--- a/resources/vue/store/blubber.js
+++ b/resources/vue/store/blubber.js
@@ -166,7 +166,7 @@ export default {
 
             // if total is missing, there are more comments to fetch
             const total = rootGetters['blubber-comments/lastMeta']?.page?.total;
-            const hasMore = !total;
+            const hasMore = total ?? true;
             commit('setMoreOlder', { id, hasMore });
         },