Skip to content

Commit 25c556a

Browse files
committed
Fix shared token display.
1 parent b3320cc commit 25c556a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/website/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,13 @@ function parseLocationQuery() {
2525
const locSearch = queryString.parse(document.location.search.substr(1));
2626
const locHash = queryString.parse(document.location.hash.substr(1));
2727

28-
const keys = [ 'id_token', 'access_token', 'value', 'token'];
28+
const keys = [
29+
'id_token',
30+
'access_token',
31+
'value',
32+
'token',
33+
'debugger-io?token'
34+
];
2935
for(const key of keys) {
3036
const token = locSearch[key] || locHash[key];
3137

0 commit comments

Comments
 (0)