catch split exception in parsebase64
This commit is contained in:
parent
755414cd7a
commit
c7dc14d4f9
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
export default function parseBase64(token) {
|
export default function parseBase64(token) {
|
||||||
let tokenData = atob(token.split('.')[1]);
|
let tokenData;
|
||||||
try {
|
try {
|
||||||
|
tokenData = atob(token.split('.')[1]);
|
||||||
return JSON.parse(tokenData);
|
return JSON.parse(tokenData);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
return tokenData;
|
return tokenData;
|
||||||
|
|
Reference in a new issue