#470 - handle cases without subject

This commit is contained in:
jared 2019-04-01 13:01:28 -04:00
parent 6847e70a49
commit 487a194f6d
1 changed files with 3 additions and 0 deletions

View File

@ -253,6 +253,9 @@ const Status = {
return this.$store.state.config.maxThumbnails
},
contentHtml () {
if (!this.status.summary_html) {
return this.status.statusnet_html
}
return this.status.summary_html + '<br />' + this.status.statusnet_html
}
},