Skip to content
Snippets Groups Projects
Commit 5b464674 authored by Takeshi Umeda's avatar Takeshi Umeda Committed by Eugen Rochko
Browse files

Fix an issue where polls with 'expires_at' not set expired (#12222)

parent 7512f3a3
No related branches found
No related tags found
No related merge requests found
......@@ -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 };
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment