using angular with ngrx I have to open, on the same page, a URL outside my application after a backend response. This works fine in Chrome but in Firefox I'm having a lot of request blocked with NS_BINDING_ABORTED. I am redirecting to another angular application which by the way never get reached. Confirmed via console.log on very first instructions.
In the application, when a buttons is clicked a specific actions is dispacthed. In the subscribe of the effect linked to the response the window.location is called.
this.subsink.add(
this.actions$
.pipe(
ofType(toreActions.REQUEST),
filter((resp) => *somefilter*)
)
.subscribe((url) =>
window.open(url, '_self');
)
);
Tried window.location.open, window.location.href as well, but none of them work. I've tried other solutions such as setInterval inside the subscribe but again it does not work.
