vue-jwt-auth
Advanced tools
Comparing version 0.10.0 to 0.10.1
@@ -19,3 +19,3 @@ { | ||
}, | ||
"version": "0.10.0" | ||
"version": "0.10.1" | ||
} |
@@ -259,3 +259,8 @@ module.exports = (function () { | ||
if (data.code) { | ||
state = JSON.parse(this.$route.query.state); | ||
try { | ||
state = JSON.parse(decodeURIComponent(this.$route.query.state)); | ||
} | ||
catch(e) { | ||
state = {}; | ||
} | ||
@@ -515,3 +520,3 @@ _login.call(this, this.getOption(type + 'Url'), data, state.rememberMe, state.redirect, options); | ||
version() { | ||
return '0.10.0'; | ||
return '0.10.1'; | ||
} | ||
@@ -518,0 +523,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26415
438