summaryrefslogtreecommitdiffstats
path: root/src/components/routes/Unread.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/routes/Unread.vue')
-rw-r--r--src/components/routes/Unread.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/routes/Unread.vue b/src/components/routes/Unread.vue
index 230a8ea04..b7199ea35 100644
--- a/src/components/routes/Unread.vue
+++ b/src/components/routes/Unread.vue
@@ -21,7 +21,7 @@ import { mapState } from 'vuex'
import NcCounterBubble from '@nextcloud/vue/dist/Components/NcCounterBubble.js'
-import FeedItemDisplayList from '../FeedItemDisplayList.vue'
+import FeedItemDisplayList from '../feed-display/FeedItemDisplayList.vue'
import { FeedItem } from '../../types/FeedItem'
import { ACTIONS, MUTATIONS } from '../../store'
@@ -68,7 +68,7 @@ export default Vue.extend({
},
async fetchMore() {
if (this.unreadCache && !this.$store.state.items.fetchingItems.unread) {
- this.$store.dispatch(ACTIONS.FETCH_UNREAD, { start: this.unreadCache[this.unreadCache?.length - 1]?.id })
+ this.$store.dispatch(ACTIONS.FETCH_UNREAD)
}
},
},