question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

1.0.0-beta.10: Failed to construct 'URL': Invalid URL

See original GitHub issue

with 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:closed
  • Created 6 years ago
  • Reactions:28
  • Comments:30 (4 by maintainers)

github_iconTop GitHub Comments

12reactions
ghostcommented, Mar 12, 2018

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.

export function TranslateFactory(http: HttpClient): TranslateHttpLoader {

    return new TranslateHttpLoader(http, './assets/i18n/', '.json');
}

And this is how I fixed it.

export function TranslateFactory(http: HttpClient): TranslateHttpLoader {

    return new TranslateHttpLoader(http, location.origin + '/assets/i18n/', '.json');
}

Hope this will be helpful!

6reactions
liofalcommented, Mar 13, 2018

Same problem with release 1.0.0

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found