Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge hotfix to dev #602

Open
wants to merge 7 commits into
base: dev
Choose a base branch
from
5 changes: 5 additions & 0 deletions src/CAServer.Application/CAAccount/CAAccountAppService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,11 @@
throw new UserFriendlyException("Invalidate address");
}

if (address.Contains('_'))
{
address = address.Split("_")[1];
}

Check warning on line 475 in src/CAServer.Application/CAAccount/CAAccountAppService.cs

View check run for this annotation

Codecov / codecov/patch

src/CAServer.Application/CAAccount/CAAccountAppService.cs#L473-L475

Added lines #L473 - L475 were not covered by tests

var result = new CAHolderExistsResponseDto();
var caAddresses = new List<string>
{
Expand Down
Loading