mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-02-21 14:00:56 +01:00
adding a crashfix at storing contact photo
This commit is contained in:
parent
c6a86fe4a7
commit
867b499eab
@ -290,7 +290,11 @@ class DBHelper private constructor(val context: Context) : SQLiteOpenHelper(cont
|
|||||||
|
|
||||||
val photoByteArray = cursor.getBlobValue(COL_PHOTO) ?: null
|
val photoByteArray = cursor.getBlobValue(COL_PHOTO) ?: null
|
||||||
val photo = if (photoByteArray?.isNotEmpty() == true) {
|
val photo = if (photoByteArray?.isNotEmpty() == true) {
|
||||||
|
try {
|
||||||
BitmapFactory.decodeByteArray(photoByteArray, 0, photoByteArray.size)
|
BitmapFactory.decodeByteArray(photoByteArray, 0, photoByteArray.size)
|
||||||
|
} catch (e: OutOfMemoryError) {
|
||||||
|
null
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
null
|
null
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user