Skip to content

Commit

Permalink
Merge pull request #600 from bcgov/yj
Browse files Browse the repository at this point in the history
feat(dss-794)
  • Loading branch information
ychung-mot authored Sep 5, 2024
2 parents 2c99063 + 43e11b4 commit c96ede2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/StrDss.Data/Repositories/RentalListingRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ private static void ApplyFilters(string? all, string? address, string? url, stri
if (listingId != null && listingId.IsNotEmpty())
{
var listingIdLower = listingId.ToLower();
query = query.Where(x => x.PlatformListingNo != null && x.PlatformListingNo.ToLower().Contains(listingIdLower));
query = query.Where(x => x.PlatformListingNo != null && x.PlatformListingNo.ToLower() == listingIdLower);
}

if (hostName != null && hostName.IsNotEmpty())
Expand Down

0 comments on commit c96ede2

Please sign in to comment.