diff options
author | Stefan Weil <sw@weilnetz.de> | 2018-10-19 11:23:33 +0200 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2018-10-19 11:24:24 +0200 |
commit | 2ad38200fbad6a21403a1addaa65deab72741760 (patch) | |
tree | 94265101976cc7d49429a06483987dec3492d76d /apps/files_sharing/js/sharedfilelist.js | |
parent | a1ea504edf529a364be9b66fda5d100d62dcc0b9 (diff) | |
download | nextcloud-server-2ad38200fbad6a21403a1addaa65deab72741760.tar.gz nextcloud-server-2ad38200fbad6a21403a1addaa65deab72741760.zip |
Add missing semicolons
This fixes some recommendations from LGTM:
Avoid automated semicolon insertion (90% of all statements
in the enclosing function have an explicit semicolon).
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'apps/files_sharing/js/sharedfilelist.js')
-rw-r--r-- | apps/files_sharing/js/sharedfilelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/js/sharedfilelist.js b/apps/files_sharing/js/sharedfilelist.js index 3a6de0d5012..19250815bd6 100644 --- a/apps/files_sharing/js/sharedfilelist.js +++ b/apps/files_sharing/js/sharedfilelist.js @@ -232,7 +232,7 @@ promises.push($.ajax(remoteShares)); } if (this._isOverview) { - shares.data.shared_with_me = !shares.data.shared_with_me + shares.data.shared_with_me = !shares.data.shared_with_me; promises.push($.ajax(shares)); } } |