Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0d2a1274 authored by Jay Shrauner's avatar Jay Shrauner Committed by Android Git Automerger
Browse files

am a9d3960f: Merge "Fix synchronization in onNotNullableQueryComplete" into klp-dev

* commit 'a9d3960f':
  Fix synchronization in onNotNullableQueryComplete
parents 13a8c8c7 a9d3960f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ public class CallLogQueryHandler extends NoNullCursorAsyncQueryHandler {
    }

    @Override
    protected void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) {
    protected synchronized void onNotNullableQueryComplete(int token, Object cookie, Cursor cursor) {
        if (token == QUERY_CALLLOG_TOKEN) {
            int requestId = ((Integer) cookie).intValue();
            if (requestId != mCallsRequestId) {