mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-29 18:02:25 -05:00
fix the local only home timeline filter func
This commit is contained in:
parent
93ad2850f6
commit
ec9062e80a
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ func (p *Processor) HomeTimelineGet(
|
||||||
// Set local = true query.
|
// Set local = true query.
|
||||||
pageQuery = localOnlyTrue
|
pageQuery = localOnlyTrue
|
||||||
postFilter = func(s *gtsmodel.Status) bool {
|
postFilter = func(s *gtsmodel.Status) bool {
|
||||||
return *s.Local
|
return !*s.Local
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Set local = false query.
|
// Set local = false query.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue