1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-12 04:22:35 +02:00

Send auth header with ajax requests

This commit is contained in:
Mark McDowall 2013-10-10 08:34:30 -07:00
parent 48c9e29eab
commit 7ac77ecfcc

View File

@ -22,6 +22,10 @@ define(
delete xhr.data;
}
s if (xhr) {
xhr.headers = xhr.headers || {};
xhr.headers.Authorization = window.NzbDrone.ApiKey;
}
return original.apply(this, arguments);
};