Skip to content

Commit

Permalink
fix: Fix filter.fetchStatus URL
Browse files Browse the repository at this point in the history
  • Loading branch information
neet committed Apr 8, 2023
1 parent 18e2221 commit 75a310b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mastodon/v2/repositories/filter-repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export class FilterRepository
*/
@version({ since: '4.0.0' })
fetchStatus(id: string): Promise<FilterStatus> {
return this.http.get(`/api/v2/filters/${id}/statuses`);
return this.http.get(`/api/v2/filters/statuses/${id}`);
}

/**
Expand Down

0 comments on commit 75a310b

Please sign in to comment.