mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
Delete xhr.data before sending
I did this all by myself, kayone did not assist in any way, shape or form.
This commit is contained in:
parent
f3194279e4
commit
f6ec58ecd5
1 changed files with 2 additions and 0 deletions
|
@ -17,6 +17,8 @@ define(function () {
|
||||||
else {
|
else {
|
||||||
xhr.url = xhr.url + '&' + $.param(xhr.data);
|
xhr.url = xhr.url + '&' + $.param(xhr.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
delete xhr.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
return original.apply(this, arguments);
|
return original.apply(this, arguments);
|
||||||
|
|
Loading…
Reference in a new issue