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
|
.map { visibility, isMyself in
|
||||||
switch visibility {
|
switch visibility {
|
||||||
case .public, .unlisted:
|
case .public, .unlisted, ._other:
|
||||||
return true
|
return true
|
||||||
case .private where isMyself:
|
case .private where isMyself:
|
||||||
return true
|
return true
|
||||||
case .private, .direct, ._other:
|
case .private, .direct:
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue