diff options
| author | Henry Jameson <me@hjkos.com> | 2018-09-25 15:21:47 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2018-09-25 15:21:47 +0300 |
| commit | d5e82625d3e14ed22224de871e732f8b6db9df59 (patch) | |
| tree | 03c457f6f38ef43bf498513fad0c08b7a5ccc1ae /src | |
| parent | ef968d8e1e4f3194a0856fd93bc03d8030112b12 (diff) | |
lint fix
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 38cfc5ae..9c224ce3 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -174,7 +174,7 @@ const Status = { return true }, replySubject () { - if (!this.status.summary) return ''; + if (!this.status.summary) return '' const behavior = this.$store.state.config.subjectLineBehavior const startsWithRe = this.status.summary.match(/^re[: ]/i) if (behavior !== 'noop' && startsWithRe || behavior === 'masto') { |
