Skip to content
Snippets Groups Projects
Commit 5d66b10c authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Fixed bug preventing ud lookup

parent ac93db81
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,7 @@ open class UdLookupCallbackAdapter( ...@@ -13,8 +13,7 @@ open class UdLookupCallbackAdapter(
protected val listener: UdLookupResultListener protected val listener: UdLookupResultListener
) : UdLookupCallback { ) : UdLookupCallback {
override fun callback(contacts: ByteArray?, error: Exception?) { override fun callback(contacts: ByteArray?, error: Exception?) {
Log.d("UdLookup", "contacts: ${contacts?.decodeToString() ?: "null"}") val contactsResult = parseContactData(
val contactsResult = parseData(
contacts, contacts,
error error
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment