diff options
Diffstat (limited to 'internal/visibility')
| -rw-r--r-- | internal/visibility/home_timeline.go | 2 | ||||
| -rw-r--r-- | internal/visibility/public_timeline.go | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/visibility/home_timeline.go b/internal/visibility/home_timeline.go index 3cecbb5de..0a3fbde4e 100644 --- a/internal/visibility/home_timeline.go +++ b/internal/visibility/home_timeline.go @@ -156,7 +156,7 @@ func (f *Filter) isStatusHomeTimelineable(ctx context.Context, owner *gtsmodel.A  		// Check parent is deref'd.  		if next.InReplyToID == "" { -			log.Warnf(ctx, "status not yet deref'd: %s", next.InReplyToURI) +			log.Debugf(ctx, "status not (yet) deref'd: %s", next.InReplyToURI)  			return false, cache.SentinelError  		} diff --git a/internal/visibility/public_timeline.go b/internal/visibility/public_timeline.go index b2c05d51f..bad7cf991 100644 --- a/internal/visibility/public_timeline.go +++ b/internal/visibility/public_timeline.go @@ -95,7 +95,7 @@ func (f *Filter) isStatusPublicTimelineable(ctx context.Context, requester *gtsm  		// Fetch next parent to lookup.  		parentID := parent.InReplyToID  		if parentID == "" { -			log.Warnf(ctx, "status not yet deref'd: %s", parent.InReplyToURI) +			log.Debugf(ctx, "status not (yet) deref'd: %s", parent.InReplyToURI)  			return false, cache.SentinelError  		}  | 
