adding a missing return statement

This commit is contained in:
tibbi 2018-02-10 23:52:47 +01:00
parent 9cd4288862
commit 0ca4f418eb
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ fun Context.getLookupUriRawId(dataUri: Uri): Int {
if (lookupKey != null && isLollipopPlus()) {
val uri = lookupContactUri(lookupKey, this)
if (uri != null) {
getContactUriRawId(uri)
return getContactUriRawId(uri)
}
}
return -1