Fix settingsQueryUri

Change-Id: I519f9e52ebe6a2eeeed78913e0f2b0c01539161e
This commit is contained in:
Marc Blank 2012-03-01 13:24:19 -08:00
parent d5187106d1
commit ceedaa3c54

View File

@ -2196,7 +2196,7 @@ outer:
long mailboxId = Mailbox.findMailboxOfType(getContext(), accountId, Mailbox.TYPE_INBOX);
if (mailboxId != Mailbox.NO_MAILBOX) {
values.put(UIProvider.SettingsColumns.DEFAULT_INBOX,
ContentUris.withAppendedId(Mailbox.CONTENT_URI, mailboxId).toString());
"content://" + EmailContent.AUTHORITY + "/uifolder/" + mailboxId);
}
StringBuilder sb = genSelect(sAccountSettingsMap, uiProjection, values);
sb.append(" FROM " + Account.TABLE_NAME + " WHERE " + AccountColumns.ID + "=?");