This commit is contained in:
Park Byung Eun 2020-04-01 22:25:13 +09:00
parent aa7db8f839
commit 800d518611
2 changed files with 23 additions and 0 deletions

View File

@ -1,3 +1,24 @@
현재 대화방 오픈 앱 상태가 blur, minimum 일 때 읽음 처리 하지 않기
이슈 77, 78, 79, 81, 84, 87, 83 처리
화상회의 변경 사항 적용
this.store.dispatch(increaseLoginFailCount({}));
this.store.dispatch(webLoginFailure({ error: 'Failed' }));
this.store.dispatch(initialLoginFailCount({}));
if (this.maxRetryCount > this.retryCount) {
this.store.dispatch(logoutInitialize());
setTimeout(() => {
// this.store.dispatch(webLogin(selfParam));
this.router.navigateByUrl('/account/login');
}, this.retryInterval);
this.retryCount++;
console.log('retry', this.retryCount, this.maxRetryCount);
return of(webLoginFailure({ error }));
} else {
console.log(
'retry End',
this.retryCount,
this.maxRetryCount
);

View File

@ -0,0 +1,2 @@
웹소켓 disconnect 감지
retry