dd
This commit is contained in:
parent
aa7db8f839
commit
800d518611
|
@ -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
|
||||
);
|
2
documents/업무/4월/1째주/0402.txt
Normal file
2
documents/업무/4월/1째주/0402.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
웹소켓 disconnect 감지
|
||||
retry
|
Loading…
Reference in New Issue
Block a user