feat: Support client filters in GoToSocial 0.15.0 (#523)
This commit is contained in:
parent
805a2a9b1d
commit
e93e4ffb53
|
@ -273,8 +273,13 @@ data class Server(
|
|||
}
|
||||
}
|
||||
|
||||
// GoToSocial can't filter, https://github.com/superseriousbusiness/gotosocial/issues/1472
|
||||
GOTOSOCIAL -> { }
|
||||
// GoToSocial has client-side filtering, not server-side
|
||||
GOTOSOCIAL -> {
|
||||
when {
|
||||
// Implemented in https://github.com/superseriousbusiness/gotosocial/pull/2594
|
||||
v >= "0.15.0".toVersion() -> c[ORG_JOINMASTODON_FILTERS_CLIENT] = "1.1.0".toVersion()
|
||||
}
|
||||
}
|
||||
|
||||
// FireFish can't filter (conversation in the Firefish dev. chat )
|
||||
FIREFISH -> { }
|
||||
|
|
Loading…
Reference in New Issue