[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 GitHub
parent 0cb1dd493c
commit 511ad97fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)