Merge "[PeopleService] Catch exception when failed to query call log."

This commit is contained in:
Treehugger Robot
2021-11-17 21:59:43 +00:00
committed by Gerrit Code Review

View File

@@ -93,6 +93,9 @@ class CallLogQueryHelper {
hasResults = true; hasResults = true;
} }
} }
} catch (SecurityException ex) {
Slog.e(TAG, "Query call log failed: " + ex);
return false;
} }
return hasResults; return hasResults;
} }