mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 02:18:27 +03:00
[PM-5633] Ignore ArgumentOutOfRangeException to collect more data about the crash (#2933)
This commit is contained in:
parent
0e95d4d4ca
commit
5de02c863f
1 changed files with 2 additions and 1 deletions
|
@ -38,10 +38,11 @@ namespace Bit.iOS.Core.Renderers.CollectionView
|
||||||
// Do nothing in here, this is temporary to get more info about the crash, if the logger fails, we want to get the info
|
// Do nothing in here, this is temporary to get more info about the crash, if the logger fails, we want to get the info
|
||||||
// by crashing with the original exception and not the logger one
|
// by crashing with the original exception and not the logger one
|
||||||
}
|
}
|
||||||
if (ex is IndexOutOfRangeException)
|
if (ex is IndexOutOfRangeException || ex is ArgumentOutOfRangeException)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
throw colEx;
|
throw colEx;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue