Skip to content

Commit 52031f8

Browse files
authored
0.7.1 (#205)
2 parents 2aee91f + 8336f4f commit 52031f8

File tree

6 files changed

+8
-2
lines changed

6 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@
1212
<!-- ### Dependencies -->
1313
<!-- -->
1414

15+
## mytoken 0.7.1
16+
17+
### Bugfixes
18+
19+
- Fixed a bug with the local storage that caused problems with outdated discovery information
20+
1521
## mytoken 0.7.0
1622

1723
### Features

internal/model/version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0
1+
0.7.1
28 Bytes
Loading
32 Bytes
Loading

internal/server/web/static/js/storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function _storage(session = false) {
1313
function storageGet(key) {
1414
let v = _sessionStorage().getItem(key)
1515
if (!v) {
16-
v = _localStorage().getItem(key);
16+
return undefined;
1717
}
1818
return JSON.parse(v);
1919
}

mytoken.png

32 Bytes
Loading

0 commit comments

Comments
 (0)