mirror of
https://github.com/tuskyapp/Tusky
synced 2025-02-04 11:47:51 +01:00
fix boost/reply filters not working correctly in home timelines (#4308)
closes #4306
This commit is contained in:
parent
109abc5ac3
commit
f09a5b00e0
@ -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)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user