1
0
Fork 0
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:
Mark McDowall 2013-07-11 15:38:15 -07:00
parent f3194279e4
commit f6ec58ecd5

View file

@ -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);