diff --git a/src/components/notifications/notifications.js b/src/components/notifications/notifications.js index e642fc554..2272c78af 100644 --- a/src/components/notifications/notifications.js +++ b/src/components/notifications/notifications.js @@ -121,10 +121,10 @@ const Notifications = { ) }, loading() { - return useNotificationsStore().fetcher.loading.value + return useNotificationsStore().fetcher.loading }, bottomedOut() { - return useNotificationsStore().fetcher.bottomedOut.value + return useNotificationsStore().fetcher.bottomedOut }, noHeading() { const { layoutType } = useInterfaceStore() diff --git a/src/components/timeline/timeline.js b/src/components/timeline/timeline.js index 029693651..3c7e33060 100644 --- a/src/components/timeline/timeline.js +++ b/src/components/timeline/timeline.js @@ -239,7 +239,7 @@ const Timeline = { const bodyBRect = document.body.getBoundingClientRect() const height = Math.max(bodyBRect.height, -bodyBRect.y) if ( - !this.timeline.fetcher.loadingOlder.value && + !this.timeline.fetcher.loadingOlder && window.innerHeight + window.pageYOffset >= height - 750 ) { this.fetchOlderStatuses()