Prevent crash

This commit is contained in:
M66B
2018-12-24 10:51:32 +00:00
parent 9770fe009a
commit 84d09a381c
5 changed files with 5 additions and 5 deletions

View File

@@ -643,7 +643,7 @@ public class ServiceSynchronize extends LifecycleService {
ContactsContract.Contacts.LOOKUP_KEY
},
null, null, null);
if (cursor.moveToNext()) {
if (cursor != null && cursor.moveToNext()) {
if (true || Build.VERSION.SDK_INT < Build.VERSION_CODES.M) {
Uri uri = ContactsContract.Contacts.getLookupUri(
cursor.getLong(cursor.getColumnIndex(ContactsContract.Contacts._ID)),