Fix time duration value

- Make sure that duration is not < 0
- Handle nil ExpiresAt time in poll
This commit is contained in:
r 2020-02-19 16:33:21 +00:00
parent fe31d4197b
commit dd23ac4867
3 changed files with 12 additions and 4 deletions

View file

@ -10,7 +10,7 @@ import (
type Poll struct {
ID string `json:"id"`
ExpiresAt time.Time `json:"expires_at"`
ExpiresAt *time.Time `json:"expires_at"`
Expired bool `json:"expired"`
Multiple bool `json:"multiple"`
VotesCount int64 `json:"votes_count"`