mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 03:12:24 -05:00
fix incorrect visibility filtering of tag timeline statuses
This commit is contained in:
parent
8a5fcd7db8
commit
7cd2269cde
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ func (p *Processor) TagTimelineGet(
|
||||||
func(s *gtsmodel.Status) bool {
|
func(s *gtsmodel.Status) bool {
|
||||||
|
|
||||||
// Check the visibility of passed status to requesting user.
|
// Check the visibility of passed status to requesting user.
|
||||||
ok, err := p.visFilter.StatusHomeTimelineable(ctx, requester, s)
|
ok, err := p.visFilter.StatusPublicTimelineable(ctx, requester, s)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf(ctx, "error filtering status %s: %v", s.URI, err)
|
log.Errorf(ctx, "error filtering status %s: %v", s.URI, err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue