1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-16 08:13:20 +00:00

[EC-348] change blacklisted to blocked URIs (#2012)

* [EC-348] update blacklisted to blocked URIs

* [EC-348] update variable names

(cherry picked from commit 16f70dc0ce)
This commit is contained in:
Andreas Coroiu
2022-07-26 09:55:16 +02:00
parent 1c3ade8152
commit c0f04fd94d
5 changed files with 27 additions and 27 deletions

View File

@@ -45,12 +45,12 @@ namespace Bit.App.Pages
protected async override void OnDisappearing()
{
base.OnDisappearing();
await _vm.UpdateAutofillBlacklistedUris();
await _vm.UpdateAutofillBlockedUris();
}
private async void BlacklistedUrisEditor_Unfocused(object sender, FocusEventArgs e)
private async void AutofillBlockedUrisEditor_Unfocused(object sender, FocusEventArgs e)
{
await _vm.UpdateAutofillBlacklistedUris();
await _vm.UpdateAutofillBlockedUris();
}
private async void Close_Clicked(object sender, System.EventArgs e)