Merge branch 'badeline/pronouns.cc:main'

This commit is contained in:
sam 2024-02-13 17:28:56 +01:00
commit 0633a32f64
No known key found for this signature in database
GPG key ID: B4EF20DDE721CAA1

View file

@ -52,7 +52,7 @@ func (f FediverseApp) MastodonCompatible() bool {
}
func (f FediverseApp) Misskey() bool {
return f.InstanceType == "misskey" || f.InstanceType == "foundkey" || f.InstanceType == "calckey" || f.InstanceType == "firefish"
return f.InstanceType == "misskey" || f.InstanceType == "foundkey" || f.InstanceType == "calckey" || f.InstanceType == "firefish" || f.InstanceType == "sharkey"
}
const ErrNoInstanceApp = errors.Sentinel("instance doesn't have an app")