diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-06 19:53:35 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-06 19:53:35 +0100 |
commit | 6f6d659f56c8c39b6286c02c2045a85870193a74 (patch) | |
tree | ca9f86969843db2003dfa7b37a6769433ebe8f8f /apps/updatenotification | |
parent | 05d0d9e9e236cd8dc1a38f2def6d459fcd0aacf7 (diff) | |
parent | 4301e307419bedc283f8b430f4237745d018231b (diff) | |
download | nextcloud-server-6f6d659f56c8c39b6286c02c2045a85870193a74.tar.gz nextcloud-server-6f6d659f56c8c39b6286c02c2045a85870193a74.zip |
Merge pull request #22888 from owncloud/use-custom-header
Use custom header
Diffstat (limited to 'apps/updatenotification')
-rw-r--r-- | apps/updatenotification/js/admin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/js/admin.js b/apps/updatenotification/js/admin.js index 2fc8c9d99b1..3bc5dd21527 100644 --- a/apps/updatenotification/js/admin.js +++ b/apps/updatenotification/js/admin.js @@ -24,7 +24,7 @@ $(document).ready(function(){ $.ajax({ url: OC.webroot+'/updater/', headers: { - 'Authorization': loginToken + 'X-Updater-Auth': loginToken }, method: 'POST', success: function(data){ |