mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-24 09:42:17 -05:00
trying to avoid rejectedexection
This commit is contained in:
parent
04665b59c8
commit
27ad80afc2
@ -2,6 +2,7 @@ package eu.siacs.conversations.utils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.RejectedExecutionException;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.CursorLoader;
|
||||
@ -67,7 +68,13 @@ public class PhoneHelper {
|
||||
}
|
||||
}
|
||||
});
|
||||
mCursorLoader.startLoading();
|
||||
try {
|
||||
mCursorLoader.startLoading();
|
||||
} catch (RejectedExecutionException e) {
|
||||
if (listener != null) {
|
||||
listener.onPhoneContactsLoaded(phoneContacts);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static Uri getSefliUri(Context context) {
|
||||
|
Loading…
Reference in New Issue
Block a user