mirror of https://github.com/M66B/FairEmail.git
Revert "Automatically enable store sent"
This reverts commit 886e87198d
.
This commit is contained in:
parent
5bb959448c
commit
1657d1a836
|
@ -993,8 +993,6 @@ class Core {
|
||||||
orphan.folder = folder.id;
|
orphan.folder = folder.id;
|
||||||
db.message().updateMessage(orphan);
|
db.message().updateMessage(orphan);
|
||||||
EntityOperation.queue(context, db, orphan, EntityOperation.ADD);
|
EntityOperation.queue(context, db, orphan, EntityOperation.ADD);
|
||||||
|
|
||||||
db.identity().setIdentityStoreSent(orphan.identity, true);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -77,9 +77,6 @@ public interface DaoIdentity {
|
||||||
@Query("UPDATE identity SET password = :password WHERE id = :id")
|
@Query("UPDATE identity SET password = :password WHERE id = :id")
|
||||||
int setIdentityPassword(long id, String password);
|
int setIdentityPassword(long id, String password);
|
||||||
|
|
||||||
@Query("UPDATE identity SET store_sent = :store_sent WHERE id = :id")
|
|
||||||
int setIdentityStoreSent(long id, boolean store_sent);
|
|
||||||
|
|
||||||
@Query("UPDATE identity SET error = :error WHERE id = :id")
|
@Query("UPDATE identity SET error = :error WHERE id = :id")
|
||||||
int setIdentityError(long id, String error);
|
int setIdentityError(long id, String error);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue