adding a missing return statement
This commit is contained in:
parent
9cd4288862
commit
0ca4f418eb
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ fun Context.getLookupUriRawId(dataUri: Uri): Int {
|
||||||
if (lookupKey != null && isLollipopPlus()) {
|
if (lookupKey != null && isLollipopPlus()) {
|
||||||
val uri = lookupContactUri(lookupKey, this)
|
val uri = lookupContactUri(lookupKey, this)
|
||||||
if (uri != null) {
|
if (uri != null) {
|
||||||
getContactUriRawId(uri)
|
return getContactUriRawId(uri)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1
|
return -1
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue