fix boost/reply filters not working correctly in home timelines (#4308)

closes #4306
This commit is contained in:
Konrad Pozniak 2024-03-06 13:21:29 +01:00 committed by GitHub
parent 109abc5ac3
commit f09a5b00e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -85,9 +85,9 @@ abstract class TimelineViewModel(
if (kind == Kind.HOME) {
// Note the variable is "true if filter" but the underlying preference/settings text is "true if show"
filterRemoveReplies =
!(accountManager.activeAccount?.isShowHomeBoosts ?: true)
filterRemoveReblogs =
!(accountManager.activeAccount?.isShowHomeReplies ?: true)
filterRemoveReblogs =
!(accountManager.activeAccount?.isShowHomeBoosts ?: true)
filterRemoveSelfReblogs =
!(accountManager.activeAccount?.isShowHomeSelfBoosts ?: true)
}