2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

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

@ -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
}
}
}