diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-01-01 11:19:42 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-01-01 11:19:42 +0900 |
| commit | 3edd41b97ee9f7be083fe2cfc979d358f1857c8b (patch) | |
| tree | 84655e5e0c2f083b170136977d198f079f72ec22 /src/web/app | |
| parent | Clean up (diff) | |
| download | sharkey-3edd41b97ee9f7be083fe2cfc979d358f1857c8b.tar.gz sharkey-3edd41b97ee9f7be083fe2cfc979d358f1857c8b.tar.bz2 sharkey-3edd41b97ee9f7be083fe2cfc979d358f1857c8b.zip | |
Fox bug
Diffstat (limited to 'src/web/app')
| -rw-r--r-- | src/web/app/boot.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/app/boot.js b/src/web/app/boot.js index 348787726b..612e73e885 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -111,7 +111,7 @@ function fetchme(token, silent, cb) { }).then(res => { // When failed to authenticate user if (res.status !== 200) { - signout(); + return signout(); } res.json().then(i => { me = i; |