Avoid polling iframe when url is not set

This commit is contained in:
Kristóf Tóth 2019-10-14 14:58:40 +02:00
parent f51aebe1de
commit 52e80dff03
1 changed files with 4 additions and 0 deletions

View File

@ -168,6 +168,10 @@ export class DashboardComponent implements OnInit, OnDestroy {
errors.pipe(
tap(
response => {
if (this.iframeUrl.value === '') {
this.iframeReloadSubscription.unsubscribe();
this.polling.next(false);
}
if (response.status === 200) {
this.iframeReloadSubscription.unsubscribe();
this.polling.next(false);