mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-07 08:54:39 +01:00
[bugfix] Fix panic in isStatusHomeTimelineable
(#3096)
This commit is contained in:
parent
aeb65bceae
commit
bbbdf01213
@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user