1.0.0-beta.10: Failed to construct 'URL': Invalid URL
See original GitHub issuewith beta 9 everything was working fine but with beta10 i get now:
Failed to construct ‘URL’: Invalid URL
url example:
/api/v1/system/mode
(same server)
JwtModule.forRoot({
config: {
tokenGetter: tokenGetter,
whitelistedDomains: ['localhost']
}
}),
export function tokenGetter() {
return localStorage.getItem(Configuration.AUTH_TOKEN_ID);
}
This issue is caused by the changes on src/jwt.interceptor.ts in pull request #438
const requestUrl = new URL(request.url);
will not accept relative urls. It has to be new URL(relative, base)
or new URL(full-url)
Issue Analytics
- State:
- Created 6 years ago
- Reactions:28
- Comments:30 (4 by maintainers)
Top Results From Across the Web
TypeError: Failed to construct 'URL': Invalid URL - Treehouse
Hello, I'm attempting to use images and videos in my react component and I'm receiving one of two errors. Where I try the...
Read more >npm install fails "invalid version" - Stack Overflow
I was using 1.0 as the version which was giving me an error. Changing it to 1.0.0 worked. Thanks! – Rizwan Javaid. Sep...
Read more >Developer portal changelog - Redocly
Upgraded the @redocly/openapi-core package to 1.0.0-beta.110 . ... Added new theme setting externalIconUrl to specify URL to external icon.
Read more >Changelog ⚡️ FormKit — Vue Forms, Supercharged
Fixed a bug where a checkbox validation with "required" worked only the first time #169. 1.0.0-beta.10. July 29, 2022. New features. Input ...
Read more >Changelog - Grammarly API
Fix issue where pressing Tab did not accept autocomplete suggestion (PAR-1759) ... 2.0.6 (2022-10-21) ... Fix autocomplete worker script URL in Electron apps ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Hi everybody,
I was dealing with exactly the same issue after updating to 1.0.0, even if I was already using absolute URLs in all of my requests. After investigating, I realized that the problem was coming from the custom factory of the translation package TranslateModule.
And this is how I fixed it.
Hope this will be helpful!
Same problem with release 1.0.0