Christoffer Eenberg

Results 2 comments of Christoffer Eenberg

This does appear to work as a temporary fix. Although it does make our build fail due to types on window.Request.prototype.signal From typescript it says: `Cannot assign to 'signal' because...

@michal-continuum How did you use the > Object.prototype.hasOwnProperty.call(window.Request, "signal") I've tried appling it to my codebase like: ` if (!window.Request.prototype.hasOwnProperty('signal')) { Object.prototype.hasOwnProperty.call(window.Request, 'signal'); }` and also simply just the one...