Fix local / trending tab showing federated timeline

This commit is contained in:
Thomas Ricouard 2023-12-29 07:32:33 +01:00
parent 7b484fc8e1
commit 19715bb1f6

View file

@ -277,7 +277,7 @@ struct TimelineTab: View {
private func resetTimelineFilter() {
if client.isAuth, canFilterTimeline {
timeline = lastTimelineFilter
} else {
} else if !client.isAuth {
timeline = .federated
}
}