Increase maximum number of messages in unified inbox widget to 100

This commit is contained in:
M66B 2019-08-01 10:07:31 +02:00
parent c72e752a43
commit d8701a69a3
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ public interface DaoMessage {
" AND (NOT :flagged OR message.ui_flagged)" +
" GROUP BY account.id, CASE WHEN message.thread IS NULL THEN message.id ELSE message.thread END" +
" ORDER BY message.received DESC" +
" LIMIT 50";
" LIMIT 100";
@Query(widget)
@SuppressWarnings(RoomWarnings.CURSOR_MISMATCH)