mirror of
https://github.com/tuskyapp/Tusky
synced 2025-02-09 21:50:44 +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) {
|
if (kind == Kind.HOME) {
|
||||||
// Note the variable is "true if filter" but the underlying preference/settings text is "true if show"
|
// Note the variable is "true if filter" but the underlying preference/settings text is "true if show"
|
||||||
filterRemoveReplies =
|
filterRemoveReplies =
|
||||||
!(accountManager.activeAccount?.isShowHomeBoosts ?: true)
|
|
||||||
filterRemoveReblogs =
|
|
||||||
!(accountManager.activeAccount?.isShowHomeReplies ?: true)
|
!(accountManager.activeAccount?.isShowHomeReplies ?: true)
|
||||||
|
filterRemoveReblogs =
|
||||||
|
!(accountManager.activeAccount?.isShowHomeBoosts ?: true)
|
||||||
filterRemoveSelfReblogs =
|
filterRemoveSelfReblogs =
|
||||||
!(accountManager.activeAccount?.isShowHomeSelfBoosts ?: true)
|
!(accountManager.activeAccount?.isShowHomeSelfBoosts ?: true)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user