[Glitch] Fix an issue where polls with 'expires_at' not set expired

Port 5b46467474 to glitch-soc

Signed-off-by: Thibaut Girka <thib@sitedethib.com>
master
Takeshi Umeda 2019-10-27 20:45:55 +09:00 committed by Thibaut Girka
parent 0ae7d84273
commit f2fc7246e1
1 changed files with 2 additions and 1 deletions

View File

@ -39,7 +39,8 @@ class Poll extends ImmutablePureComponent {
static getDerivedStateFromProps (props, state) {
const { poll, intl } = props;
const expired = poll.get('expired') || (new Date(poll.get('expires_at'))).getTime() < intl.now();
const expires_at = poll.get('expires_at');
const expired = poll.get('expired') || expires_at !== null && (new Date(expires_at)).getTime() < intl.now();
return (expired === state.expired) ? null : { expired };
}