mirror of https://github.com/M66B/FairEmail.git
Fixed warning
This commit is contained in:
parent
ad73df35eb
commit
715f5e1e83
|
@ -570,6 +570,7 @@ public interface DaoMessage {
|
|||
" ORDER BY folder")
|
||||
LiveData<List<TupleMessageWidgetCount>> liveWidgetUnified();
|
||||
|
||||
@SuppressWarnings(RoomWarnings.CURSOR_MISMATCH)
|
||||
@Query("SELECT message.*" +
|
||||
", account.name AS accountName, COALESCE(identity.color, folder.color, account.color) AS accountColor" +
|
||||
", SUM(1 - message.ui_seen) AS unseen" +
|
||||
|
@ -589,7 +590,6 @@ public interface DaoMessage {
|
|||
" GROUP BY account.id" +
|
||||
", CASE WHEN message.thread IS NULL OR NOT :threading THEN message.id ELSE message.thread END" +
|
||||
" ORDER BY message.received DESC")
|
||||
@SuppressWarnings(RoomWarnings.CURSOR_MISMATCH)
|
||||
List<TupleMessageWidget> getWidgetUnified(Long account, Long folder, boolean threading, boolean unseen, boolean flagged);
|
||||
|
||||
@Query("SELECT uid FROM message" +
|
||||
|
|
Loading…
Reference in New Issue