1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-07-11 13:05:21 +02:00

Catch additional exception types when validating intents (#2618)

This commit is contained in:
mpbw2 2023-07-17 08:40:35 -04:00 committed by GitHub
parent 1f20f70d13
commit 9adc4d3080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
using Android.Content;
using Android.OS;
using Java.Lang;
namespace Bit.Droid.Utilities
{
@ -13,7 +14,12 @@ namespace Bit.Droid.Utilities
// Note: getting the bundle like this will cause to call unparcel() internally
var b = intent?.Extras?.GetBundle("trashstringwhichhasnousebuttocheckunparcel");
}
catch (BadParcelableException)
catch (Exception ex) when
(
ex is BadParcelableException ||
ex is ClassNotFoundException ||
ex is RuntimeException
)
{
intent.ReplaceExtras((Bundle)null);
}