diff --git a/src/com/android/email/provider/EmailProvider.java b/src/com/android/email/provider/EmailProvider.java index 6bbdf5e0a..b7b6cba1a 100644 --- a/src/com/android/email/provider/EmailProvider.java +++ b/src/com/android/email/provider/EmailProvider.java @@ -1821,7 +1821,8 @@ public class EmailProvider extends ContentProvider { if (selection != null || selectionArgs != null) { throw new IllegalArgumentException("UI queries can't have selection/args"); } - return uiQuery(match, uri, projection); + c = uiQuery(match, uri, projection); + return c; case ACCOUNT_DEFAULT_ID: // Start with a snapshot of the cache Map accountCache = mCacheAccount.getSnapshot();