From d1c2b59018346015152c72792e5b52512ee2b928 Mon Sep 17 00:00:00 2001 From: Nicolas Constant Date: Sat, 3 Nov 2018 14:17:41 -0400 Subject: [PATCH] fix retrieving hashtag when scrolling --- src/app/components/stream/stream.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/stream/stream.component.ts b/src/app/components/stream/stream.component.ts index 0a4af14b..0b1a2b1b 100644 --- a/src/app/components/stream/stream.component.ts +++ b/src/app/components/stream/stream.component.ts @@ -128,7 +128,7 @@ export class StreamComponent implements OnInit { this.isProcessingInfiniteScroll = true; const lastStatus = this.statuses[this.statuses.length - 1]; - this.mastodonService.getTimeline(this.account, this._streamElement.type, lastStatus.status.id) + this.mastodonService.getTimeline(this.account, this._streamElement.type, lastStatus.status.id, null, 20, this._streamElement.tag, this._streamElement.list) .then((status: Status[]) => { for (const s of status) { const wrapper = new StatusWrapper(s, this.account);