Ignore IllformedLocaleException in DEBUG builds too

This commit is contained in:
SpiritCroc 2020-06-05 16:47:17 +02:00
parent 714f598df6
commit bab3916e3f

View File

@ -202,9 +202,11 @@ object VectorLocale {
.setScript(script)
.build()
} catch (exception: IllformedLocaleException) {
/*
if (BuildConfig.DEBUG) {
throw exception
}
*/
// Ignore this locale in production
null
}