diff --git a/src/app/components/floating-column/manage-account/mentions/mentions.component.ts b/src/app/components/floating-column/manage-account/mentions/mentions.component.ts index 65070974..eb416065 100644 --- a/src/app/components/floating-column/manage-account/mentions/mentions.component.ts +++ b/src/app/components/floating-column/manage-account/mentions/mentions.component.ts @@ -42,6 +42,7 @@ export class MentionsComponent extends TimelineBase { } ngOnInit() { + this.isLoading = false; } ngOnDestroy(): void { @@ -81,6 +82,7 @@ export class MentionsComponent extends TimelineBase { } protected getNextStatuses(): Promise { + console.warn('MENTIONS get next status'); return this.mastodonService.getNotifications(this.account, ['follow', 'favourite', 'reblog', 'poll'], this.lastId) .then((result: Notification[]) => { const statuses = result.map(x => x.status);