Skip to content

Commit

Permalink
msi459
Browse files Browse the repository at this point in the history
  • Loading branch information
GladwinJohnson committed Jan 16, 2024
1 parent a365b0a commit 44d4159
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
Expand Up @@ -68,6 +68,13 @@ public async Task<ActionResult> GetSecret([FromQuery(Name = "userAssignedClientI
ViewBag.Message = secretValue;
return View();
}
catch (MsalServiceException ex)
{
ViewBag.Title = "MsalServiceException Thrown!!!";
ViewBag.Error = "MsalServiceException";
ViewBag.Message = ex.Message;
return View();
}
catch (MsalException ex)
{
ViewBag.Title = "MsalException Thrown!!!";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Identity.Client" Version="4.58.1" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.59.0" />
</ItemGroup>

</Project>

0 comments on commit 44d4159

Please sign in to comment.