Fall back to allowing reblogs of unsupported visibilities

This commit is contained in:
Jed Fox 2022-12-20 16:12:43 -05:00
parent 2f553c1648
commit 726af2e8ea
No known key found for this signature in database
GPG Key ID: 0B61D18EA54B47E1
1 changed files with 2 additions and 2 deletions

View File

@ -161,11 +161,11 @@ extension StatusView {
)
.map { visibility, isMyself in
switch visibility {
case .public, .unlisted:
case .public, .unlisted, ._other:
return true
case .private where isMyself:
return true
case .private, .direct, ._other:
case .private, .direct:
return false
}
}