Fixing duplicate POP3 messages

This commit is contained in:
M66B
2020-05-10 11:39:11 +02:00
parent fb75830d0b
commit e05aa83e94
3 changed files with 9 additions and 1 deletions

View File

@@ -485,7 +485,7 @@ public interface DaoMessage {
" AND NOT uid IS NULL")
List<Long> getUids(long folder, Long received);
@Query("SELECT uidl, msgid FROM message" +
@Query("SELECT id, uidl, msgid FROM message" +
" WHERE folder = :folder")
List<TupleUidl> getUidls(long folder);