Skip to content

Commit

Permalink
Work in support of #473.
Browse files Browse the repository at this point in the history
  • Loading branch information
uncheckederror committed Oct 7, 2024
1 parent 3f647c6 commit 02e1e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NumberSearch.Ops/Controllers/PortRequestsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public async Task<IActionResult> PortRequestUpdate(PortRequestResult result, Gui
if (fromDb is not null)
{
// If the address has changed update it.
if (portRequest.Address != fromDb.Address)
if (!string.IsNullOrWhiteSpace(portRequest.UnparsedAddress) && portRequest.UnparsedAddress != fromDb.UnparsedAddress)
{
// Format the address information
Log.Information($"[Checkout] Parsing address data from {portRequest.UnparsedAddress}");
Expand Down

0 comments on commit 02e1e39

Please sign in to comment.