From fbb80832043bf3d9b01f5190ca77e22ff533414f Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Mon, 3 Apr 2023 15:33:13 +0300 Subject: [PATCH] Refer to person image instead of vector drawable --- app/src/main/kotlin/com/tutpro/baresip/Utils.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/Utils.kt b/app/src/main/kotlin/com/tutpro/baresip/Utils.kt index 31817d6c..f519928c 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/Utils.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/Utils.kt @@ -387,7 +387,7 @@ object Utils { } null -> { - val bitmap = BitmapFactory.decodeResource(ctx.resources, R.drawable.person) + val bitmap = BitmapFactory.decodeResource(ctx.resources, R.drawable.person_image) imageView.setImageBitmap(bitmap) }