Fix creating polls outside of threads (#7711)
This commit is contained in:
parent
9adfdb8fed
commit
226ccfc45c
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@ class PollButton extends React.PureComponent<IPollButtonProps> {
|
|||
},
|
||||
);
|
||||
} else {
|
||||
const threadId = this.props.relation.rel_type === RelationType.Thread
|
||||
const threadId = this.props.relation?.rel_type === RelationType.Thread
|
||||
? this.props.relation.event_id
|
||||
: null;
|
||||
|
||||
|
|
Loading…
Reference in a new issue