chore: Remove limit query for GET Block/Mute

This commit is contained in:
Marcus Kida 2022-11-24 13:26:35 +01:00
parent 6be1e502b7
commit 9c86dfe166
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
1 changed files with 2 additions and 2 deletions

View File

@ -256,7 +256,7 @@ public extension Mastodon.API.Account {
private struct BlocksQuery: GetQuery {
var queryItems: [URLQueryItem]? {
[URLQueryItem(name: "limit", value: "-1")]
nil
}
}
@ -506,7 +506,7 @@ extension Mastodon.API.Account {
struct MutesQuery: GetQuery {
var queryItems: [URLQueryItem]? {
[URLQueryItem(name: "limit", value: "-1")]
nil
}
}
}