Fall back to allowing reblogs of unsupported visibilities
This commit is contained in:
parent
2f553c1648
commit
726af2e8ea
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue