mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-09 13:25:40 +00:00
Fixed: Settings fields being altered during save
(cherry picked from commit dd61480d60e067e851982b0cc98f03f752b80673)
This commit is contained in:
parent
510b0bd037
commit
21d7d81602
1 changed files with 10 additions and 0 deletions
|
@ -28,6 +28,15 @@ function addApiKey(ajaxOptions) {
|
|||
ajaxOptions.headers['X-Api-Key'] = window.Lidarr.apiKey;
|
||||
}
|
||||
|
||||
function addContentType(ajaxOptions) {
|
||||
if (
|
||||
!ajaxOptions.contentType &&
|
||||
ajaxOptions.dataType === 'json' &&
|
||||
(ajaxOptions.method === 'PUT' || ajaxOptions.method === 'POST')) {
|
||||
ajaxOptions.contentType = 'application/json';
|
||||
}
|
||||
}
|
||||
|
||||
export default function createAjaxRequest(originalAjaxOptions) {
|
||||
const requestXHR = new window.XMLHttpRequest();
|
||||
let aborted = false;
|
||||
|
@ -46,6 +55,7 @@ export default function createAjaxRequest(originalAjaxOptions) {
|
|||
moveBodyToQuery(ajaxOptions);
|
||||
addRootUrl(ajaxOptions);
|
||||
addApiKey(ajaxOptions);
|
||||
addContentType(ajaxOptions);
|
||||
}
|
||||
|
||||
const request = $.ajax({
|
||||
|
|
Loading…
Add table
Reference in a new issue