FIX: add protection just in case topic is not set

Under some conditions we may be loading the composer with no topic set.
This code could fail leading to a broken composer.
This commit is contained in:
Sam Saffron 2020-07-15 11:38:28 +10:00
parent fd083394cb
commit 97f581e1df
No known key found for this signature in database
GPG Key ID: B9606168D2FFD9F5

View File

@ -91,7 +91,9 @@ export default DropdownSelectBoxComponent.extend({
if (
this.action === REPLY &&
this.topic &&
this.topic.isPrivateMessage &&
this.topic.details &&
(this.topic.details.allowed_users.length > 1 ||
this.topic.details.allowed_groups.length > 0) &&
!this.isEditing &&