diff options
Diffstat (limited to 'client/src/app/+about')
-rw-r--r-- | client/src/app/+about/about-follows/about-follows.component.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+about/about-follows/about-follows.component.ts b/client/src/app/+about/about-follows/about-follows.component.ts index d60307928..fc265fecb 100644 --- a/client/src/app/+about/about-follows/about-follows.component.ts +++ b/client/src/app/+about/about-follows/about-follows.component.ts | |||
@@ -74,7 +74,7 @@ export class AboutFollowsComponent implements OnInit { | |||
74 | private loadMoreFollowers () { | 74 | private loadMoreFollowers () { |
75 | const pagination = this.restService.componentPaginationToRestPagination(this.followersPagination) | 75 | const pagination = this.restService.componentPaginationToRestPagination(this.followersPagination) |
76 | 76 | ||
77 | this.followService.getFollowers(pagination, this.sort) | 77 | this.followService.getFollowers({ pagination: pagination, sort: this.sort, state: 'accepted' }) |
78 | .subscribe( | 78 | .subscribe( |
79 | resultList => { | 79 | resultList => { |
80 | const newFollowers = resultList.data.map(r => r.follower.host) | 80 | const newFollowers = resultList.data.map(r => r.follower.host) |
@@ -92,7 +92,7 @@ export class AboutFollowsComponent implements OnInit { | |||
92 | private loadMoreFollowings () { | 92 | private loadMoreFollowings () { |
93 | const pagination = this.restService.componentPaginationToRestPagination(this.followingsPagination) | 93 | const pagination = this.restService.componentPaginationToRestPagination(this.followingsPagination) |
94 | 94 | ||
95 | this.followService.getFollowing(pagination, this.sort) | 95 | this.followService.getFollowing({ pagination, sort: this.sort, state: 'accepted' }) |
96 | .subscribe( | 96 | .subscribe( |
97 | resultList => { | 97 | resultList => { |
98 | const newFollowings = resultList.data.map(r => r.following.host) | 98 | const newFollowings = resultList.data.map(r => r.following.host) |