[bugfix] fix check for closed poll to account for non-zero closed time but in the future (#2486)

This commit is contained in:
kim 2024-01-03 17:42:58 +00:00 committed by tobi
parent b141500e54
commit f33d05c369
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ func (p *Processor) PollVote(ctx context.Context, requester *gtsmodel.Account, p
return nil, gtserror.NewErrorUnprocessableEntity(errors.New(text), text)
// Poll has already closed, no more voting!
case !poll.ClosedAt.IsZero():
case poll.Closed():
const text = "poll already closed"
return nil, gtserror.NewErrorUnprocessableEntity(errors.New(text), text)