24 lines
756 B
Plaintext
24 lines
756 B
Plaintext
현재 대화방 오픈 앱 상태가 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
|
|
); |