summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-15 00:02:10 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-15 00:02:10 +0900
commit0305caf504e4d3f3cfb903b5c6056b18e50a4a01 (patch)
treeb7f1a253e4bbff734e55c21e987f85223201c5d4 /src/client
parentUpdate CHANGELOG.md (diff)
parentFix Oops! (#5945) (diff)
downloadmisskey-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.ts2
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();
}