diff options
| author | ValD <maghtpol@gmail.com> | 2018-12-12 15:07:07 +0000 |
|---|---|---|
| committer | ValD <maghtpol@gmail.com> | 2018-12-12 15:07:07 +0000 |
| commit | 6d3bd95bfeac38a9a1246e30cede3788e8f1e137 (patch) | |
| tree | 99359b54747db01e51841c763dfe6ba903361060 /src/components/attachment/attachment.js | |
| parent | de5d846ebd1243be41be88b1a213888b838af880 (diff) | |
removed brackets from condition
Diffstat (limited to 'src/components/attachment/attachment.js')
| -rw-r--r-- | src/components/attachment/attachment.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/attachment/attachment.js b/src/components/attachment/attachment.js index fd9a2057..574439e0 100644 --- a/src/components/attachment/attachment.js +++ b/src/components/attachment/attachment.js @@ -28,7 +28,7 @@ const Attachment = { return fileTypeService.fileType(this.attachment.mimetype) }, hidden () { - return (this.nsfw && this.hideNsfwLocal && !this.showHidden) + return this.nsfw && this.hideNsfwLocal && !this.showHidden }, isEmpty () { return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown' |
