Skip to content

Commit

Permalink
Fixed empty number call issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DjArt committed Aug 26, 2019
1 parent 40efa70 commit 89d2c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WoADialer/UI/Pages/DialPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ protected override void OnNavigatedTo(NavigationEventArgs e)
{
case string number:
currentNumber = PhoneNumber.Parse(number);
UpdateCurrentNumber();
break;
}
UpdateCurrentNumber();
}

private void UpdateCurrentNumber()
Expand Down

0 comments on commit 89d2c4f

Please sign in to comment.