chore: Remove limit query for GET Block/Mute
This commit is contained in:
parent
6be1e502b7
commit
9c86dfe166
|
@ -256,7 +256,7 @@ public extension Mastodon.API.Account {
|
||||||
|
|
||||||
private struct BlocksQuery: GetQuery {
|
private struct BlocksQuery: GetQuery {
|
||||||
var queryItems: [URLQueryItem]? {
|
var queryItems: [URLQueryItem]? {
|
||||||
[URLQueryItem(name: "limit", value: "-1")]
|
nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -506,7 +506,7 @@ extension Mastodon.API.Account {
|
||||||
|
|
||||||
struct MutesQuery: GetQuery {
|
struct MutesQuery: GetQuery {
|
||||||
var queryItems: [URLQueryItem]? {
|
var queryItems: [URLQueryItem]? {
|
||||||
[URLQueryItem(name: "limit", value: "-1")]
|
nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue