Update shortcut drawable to use content id.

This commit is contained in:
Alex Hart
2023-09-01 14:47:44 -03:00
committed by Nicholas Tinsley
parent 9337201ffb
commit 6d4b487428
5 changed files with 18 additions and 25 deletions

View File

@@ -60,6 +60,7 @@ class AvatarProvider : BaseContentProvider() {
@JvmStatic
fun getContentUri(recipientId: RecipientId): Uri {
Log.d(TAG, "getContentUri: $recipientId")
return ContentUris.withAppendedId(CONTENT_URI, recipientId.toLong())
}
}