catch disable display for nfc

This commit is contained in:
Kyle Spearrin 2019-06-06 08:59:54 -04:00
parent 6f905319c3
commit 68d8b1fa3e
1 changed files with 5 additions and 1 deletions

View File

@ -244,7 +244,11 @@ namespace Bit.Droid
}
else
{
adapter.DisableForegroundDispatch(this);
try
{
adapter.DisableForegroundDispatch(this);
}
catch { }
}
}