diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-15 00:02:10 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-15 00:02:10 +0900 |
| commit | 0305caf504e4d3f3cfb903b5c6056b18e50a4a01 (patch) | |
| tree | b7f1a253e4bbff734e55c21e987f85223201c5d4 /src/client | |
| parent | Update CHANGELOG.md (diff) | |
| parent | Fix Oops! (#5945) (diff) | |
| download | misskey-0305caf504e4d3f3cfb903b5c6056b18e50a4a01.tar.gz misskey-0305caf504e4d3f3cfb903b5c6056b18e50a4a01.tar.bz2 misskey-0305caf504e4d3f3cfb903b5c6056b18e50a4a01.zip | |
Merge branch 'develop' of https://github.com/syuilo/misskey into develop
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/mios.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/mios.ts b/src/client/mios.ts index 813617c7d0..0b94d331ea 100644 --- a/src/client/mios.ts +++ b/src/client/mios.ts @@ -59,7 +59,7 @@ export default class MiOS extends EventEmitter { let me = null; // Return when not signed in - if (token == null) { + if (token == null || token === 'null') { return done(); } |