Skip to content

Commit fb28c5d

Browse files
Fix: missing handling for error in msal
1 parent beb0d60 commit fb28c5d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/ImplicitMSALAuthenticationProvider.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ export class ImplicitMSALAuthenticationProvider implements AuthenticationProvide
8383
} catch (error) {
8484
throw error;
8585
}
86+
} else {
87+
throw error;
8688
}
8789
}
8890
} else {

src/browser/ImplicitMSALAuthenticationProvider.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ export class ImplicitMSALAuthenticationProvider implements AuthenticationProvide
8888
} catch (error) {
8989
throw error;
9090
}
91+
} else {
92+
throw error;
9193
}
9294
}
9395
} else {

0 commit comments

Comments
 (0)