Skip to content

Commit

Permalink
Forgot to push - update internal method
Browse files Browse the repository at this point in the history
  • Loading branch information
kllysng committed Jun 4, 2024
1 parent c04a235 commit 52da7cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ internal static bool ValidateIssuerSigningKey(SecurityKey securityKey, SecurityT
return true;
}

private static string CreateIssuer(string issuer, string tenantIdTemplate, string tenantId, int templateStartIndex)
internal static string CreateIssuer(string issuer, string tenantIdTemplate, string tenantId, int templateStartIndex)
{
#if NET6_0_OR_GREATER
return string.Concat(issuer.AsSpan(0, templateStartIndex), tenantId, issuer.AsSpan(templateStartIndex + tenantIdTemplate.Length, issuer.Length - tenantIdTemplate.Length - templateStartIndex));
Expand Down

0 comments on commit 52da7cd

Please sign in to comment.