diff options
| author | jared <jaredrmain@gmail.com> | 2019-04-01 13:01:28 -0400 |
|---|---|---|
| committer | jared <jaredrmain@gmail.com> | 2019-04-01 13:01:28 -0400 |
| commit | 487a194f6d83472c57588b6c8e46b52dd4d3e2f7 (patch) | |
| tree | a59f31207226ac477251ff94c05e645828da3af1 /src | |
| parent | 6847e70a492f651ea14cdec1a87b520d1a2d5ece (diff) | |
#470 - handle cases without subject
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index cb2693e1..0295cd04 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -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 } }, |
