diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-02 17:18:34 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-02 17:18:34 +0900 |
| commit | 9fb7c4091fcced4b63c2d841664a53241e2fa49d (patch) | |
| tree | 0b6f34329d2a6c5c6779eec70b0c2eaea5d3ee67 /src/client | |
| parent | Merge branch 'develop' (diff) | |
| parent | 11.8.1 (diff) | |
| download | misskey-9fb7c4091fcced4b63c2d841664a53241e2fa49d.tar.gz misskey-9fb7c4091fcced4b63c2d841664a53241e2fa49d.tar.bz2 misskey-9fb7c4091fcced4b63c2d841664a53241e2fa49d.zip | |
Merge branch 'develop'
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/mios.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/mios.ts b/src/client/app/mios.ts index b69c340528..191b72e5bf 100644 --- a/src/client/app/mios.ts +++ b/src/client/app/mios.ts @@ -195,7 +195,7 @@ export default class MiOS extends EventEmitter { }); } else { // Get token from cookie or localStorage - const i = (document.cookie.match(/i=(!\w+)/) || [null, null])[1] || localStorage.getItem('i'); + const i = (document.cookie.match(/i=(\w+)/) || [null, null])[1] || localStorage.getItem('i'); fetchme(i, me => { if (me) { |