diff options
author | Joas Schilling <coding@schilljs.com> | 2016-10-24 09:26:30 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-10-24 09:26:30 +0200 |
commit | 2aca56f207048e6dff44983fe4cd7af834e70b42 (patch) | |
tree | 78f55073e3cd4772120d05a5fcd513acf8ec5bcf /core/js/public | |
parent | 0d878f94e6a74997ca2c9ff7cf0cb4f63e44a767 (diff) | |
download | nextcloud-server-2aca56f207048e6dff44983fe4cd7af834e70b42.tar.gz nextcloud-server-2aca56f207048e6dff44983fe4cd7af834e70b42.zip |
Fix missing semicolon
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/js/public')
-rw-r--r-- | core/js/public/appconfig.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/public/appconfig.js b/core/js/public/appconfig.js index 82f479d75b2..cde2700c86c 100644 --- a/core/js/public/appconfig.js +++ b/core/js/public/appconfig.js @@ -40,7 +40,7 @@ OCP.AppConfig = { data: options.data || {}, success: options.success, error: options.error - }) + }); }, /** |