mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 02:03:08 +02:00
Fix Oops! (#5945)
This commit is contained in:
parent
f1d07dfbed
commit
585f3c3d3e
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue