1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +00:00

fix attachments selection on ios

This commit is contained in:
Kyle Spearrin
2019-06-25 17:46:37 -04:00
parent d7130d9b67
commit 14f3f99218
2 changed files with 53 additions and 23 deletions

View File

@@ -45,7 +45,10 @@ namespace Bit.App.Pages
protected override void OnDisappearing()
{
base.OnDisappearing();
_broadcasterService.Unsubscribe(nameof(AttachmentsPage));
if(Device.RuntimePlatform != Device.iOS)
{
_broadcasterService.Unsubscribe(nameof(AttachmentsPage));
}
}
private async void Save_Clicked(object sender, EventArgs e)