1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04: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
+2
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);