mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Fix Oops! (#5945)
This commit is contained in:
parent
8aa6f10cff
commit
34fb4c67f1
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ export default class MiOS extends EventEmitter {
|
||||||
let me = null;
|
let me = null;
|
||||||
|
|
||||||
// Return when not signed in
|
// Return when not signed in
|
||||||
if (token == null) {
|
if (token == null || token === 'null') {
|
||||||
return done();
|
return done();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue