@websanova/vue-auth
Advanced tools
Comparing version 2.9.3-beta to 2.9.4-beta
@@ -17,3 +17,3 @@ { | ||
"version": "2.9.3-beta", | ||
"version": "2.9.4-beta", | ||
@@ -52,3 +52,3 @@ "repository": { | ||
"@websanova/vue-auth": "2.9.3-beta", | ||
"@websanova/vue-auth": "2.9.4-beta", | ||
"axios": "0.15.3", | ||
@@ -55,0 +55,0 @@ "vue-axios": "1.2.2" |
@@ -19,3 +19,3 @@ module.exports = (function (){ | ||
for (key in mainObj) { | ||
if (isObject(mainObj[key])) { | ||
if (isObject(mainObj[key]) && mainObj[key].constructor.name !== 'FormData') { | ||
data[key] = extend(mainObj[key], {}); | ||
@@ -30,3 +30,3 @@ } | ||
for (key in appendObj[i]) { | ||
if (isObject(appendObj[i][key])) { | ||
if (isObject(appendObj[i][key]) && appendObj[i][key].constructor.name !== 'FormData') { | ||
data[key] = extend(mainObj[key] || {}, [appendObj[i][key]]); | ||
@@ -33,0 +33,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
373683