You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hope I can deliver a better explaination later on when speaking to the backend fellows I work with, but the core problem seems to be that some of our pages returns response headers with carriage returns or something (they all look simular but the result differs).
Gjøres pga følgende issues;
JakeChampion/fetch#750JakeChampion/fetch#748zloirock/core-js#751zloirock/core-js#741
I bunn og grunn, core-js@^3.6.0 introduserte støtte for
String.prototype.split med regex som har sticky-flag. Pga bug her så
fungerer ikke funksjonen som forventet noe mer i eldre IE11 versjoner.
E.g `"test".split(/e/) === ['t', 'e', 's', 't']`, denne burde gitt
`['t', 'st']`
Hi, this is a copy of the closed #422
I hope I can deliver a better explaination later on when speaking to the backend fellows I work with, but the core problem seems to be that some of our pages returns response headers with carriage returns or something (they all look simular but the result differs).
Line 374 in fetch.js
makes the normalizeName throw an error
If I change it to
The result looks the same and works again.
This might be a problem in our application that sends weird headers but you might want to check it out, again? =)
Regards Per
The text was updated successfully, but these errors were encountered: