サーバーへの接続が不安定な時にサインアウトしないように

This commit is contained in:
syuilo 2018-09-25 21:23:26 +09:00
parent 5fb1e0086e
commit 722e7006fb

View File

@ -265,7 +265,7 @@ export default class MiOS extends EventEmitter {
// When success
.then(res => {
// When failed to authenticate user
if (res.status !== 200) {
if (res.status !== 200 && res.status < 500) {
return this.signout();
}