Update error handling for lightning previews

This commit is contained in:
Mononaut
2022-08-12 17:14:45 +00:00
parent d667b8d455
commit 50d39295a5
2 changed files with 4 additions and 4 deletions

View File

@@ -52,8 +52,8 @@ export class ChannelPreviewComponent implements OnInit {
}),
catchError((err) => {
this.error = err;
this.openGraphService.waitOver('channel-map');
this.openGraphService.waitOver('channel-data');
this.openGraphService.fail('channel-map');
this.openGraphService.fail('channel-data');
return of(null);
})
);