[bugfix] Fix panic in isStatusHomeTimelineable (#3096)

This commit is contained in:
tobi 2024-07-13 11:07:01 +02:00 committed by GitHub
parent aeb65bceae
commit bbbdf01213
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -161,12 +161,13 @@ func (f *Filter) isStatusHomeTimelineable(ctx context.Context, owner *gtsmodel.A
}
// Fetch next parent in conversation.
inReplyToID := next.InReplyToID
next, err = f.state.DB.GetStatusByID(
gtscontext.SetBarebones(ctx),
next.InReplyToID,
inReplyToID,
)
if err != nil {
return false, gtserror.Newf("error getting status parent %s: %w", next.InReplyToID, err)
return false, gtserror.Newf("error getting status parent %s: %w", inReplyToID, err)
}
}