mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
One swallow does not make a summer
This commit is contained in:
@@ -149,8 +149,10 @@ public interface DaoAccount {
|
||||
@Query("UPDATE account SET keep_alive_ok = :ok WHERE id = :id")
|
||||
int setAccountKeepAliveOk(long id, boolean ok);
|
||||
|
||||
@Query("UPDATE account SET keep_alive_failed = :value WHERE id = :id")
|
||||
int setAccountKeepAliveFailed(long id, int value);
|
||||
@Query("UPDATE account" +
|
||||
" SET keep_alive_failed = :failed, keep_alive_succeeded = :succeeded" +
|
||||
" WHERE id = :id")
|
||||
int setAccountKeepAliveValues(long id, int failed, int succeeded);
|
||||
|
||||
@Query("UPDATE account SET poll_exempted = :value WHERE id = :id")
|
||||
int setAccountPollExempted(long id, boolean value);
|
||||
|
||||
Reference in New Issue
Block a user