Skip to content

Commit

Permalink
Merge pull request #312 from bcgov/yj
Browse files Browse the repository at this point in the history
chore: file upload bug fix
  • Loading branch information
ychung-mot authored May 24, 2024
2 parents f529daf + 9232ca6 commit 5a22fd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/StrDss.Service/RentalListingReportService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public async Task<Dictionary<string, List<string>>> ValidateAndParseUploadAsync(
}
}

var validOrgCds = await _orgRepo.GetManagingOrgCdsAsync(orgId);
var validOrgCds = (await _orgRepo.GetManagingOrgCdsAsync(orgId)).Select(x => x.ToUpper());

foreach (var org in orgCds)
{
Expand Down

0 comments on commit 5a22fd5

Please sign in to comment.