1
0
mirror of https://github.com/Foltik/Shimapan synced 2024-09-21 11:11:22 -04:00

Add hasOwnProperty checks to AuthSvc

This commit is contained in:
Jack Foltz 2018-01-13 17:36:40 -05:00
parent 86b7de2039
commit bf2eb3b251
Signed by: foltik
GPG Key ID: 303F88F996E95541

View File

@ -9,6 +9,7 @@ angular.module('AuthSvc', []).service('AuthService', ['$http', '$window', functi
transformRequest: function(obj) {
var str = [];
for (var p in obj)
if (obj.hasOwnProperty(p))
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},
@ -36,6 +37,7 @@ angular.module('AuthSvc', []).service('AuthService', ['$http', '$window', functi
transformRequest: function(obj) {
var str = [];
for (var p in obj)
if (obj.hasOwnProperty(p))
str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
return str.join("&");
},