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

Commit 53866f5b authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4620899 from f0e1bcb9 to pi-release

Change-Id: I02b3e73347e7f29e525190033b0684d23b1040d8
parents dabb5de1 f0e1bcb9
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -258,7 +258,13 @@ public class CandidateSuggestion {
        if (TextUtils.isEmpty(method)) {
            return null;
        }
        return mContext.getContentResolver().call(uri, method, null /* args */, null /* bundle */);
        try {
            return mContext.getContentResolver().call(uri, method, null /* args */,
                    null /* bundle */);
        } catch (IllegalArgumentException e){
            Log.d(TAG, "Unknown summary_uri", e);
            return null;
        }
    }

    /**