Skip to content

Commit

Permalink
Fixes bug with authType browser. Closes #5578
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlingstuyl authored and Adam-it committed Oct 28, 2023
1 parent bcf9db3 commit 979cc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export class Auth {
// but also stub it for testing
/* c8 ignore next 3 */
if (!this._authServer) {
this._authServer = (await import('./AuthServer')).default;
this._authServer = (await import('./AuthServer.js')).default;
}

(this._authServer as AuthServer).initializeServer(this.service, resource, resolve, reject, logger, debug);
Expand Down

0 comments on commit 979cc55

Please sign in to comment.