Skip to content

Commit

Permalink
Fix telemetry event name for monitorIframeForHash (#6467)
Browse files Browse the repository at this point in the history
Telemetry is being reported under the wrong event name for this
function. PR addresses the miss
  • Loading branch information
tnorling authored Sep 12, 2023
1 parent 4d75b09 commit 32d7a1a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Fix monitorIframeForHash telemetry event name",
"packageName": "@azure/msal-browser",
"email": "[email protected]",
"dependentChangeType": "patch"
}
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export class SilentIframeClient extends StandardInteractionClient {
// Monitor the window for the hash. Return the string value and close the popup when the hash is received. Default timeout is 60 seconds.
const hash = await invokeAsync(
silentHandler.monitorIframeForHash.bind(silentHandler),
PerformanceEvents.SilentHandlerInitiateAuthRequest,
PerformanceEvents.SilentHandlerMonitorIframeForHash,
this.logger,
this.performanceClient,
silentRequest.correlationId
Expand Down

0 comments on commit 32d7a1a

Please sign in to comment.