Reply to sender, not to self

This commit is contained in:
M66B
2018-08-14 17:41:21 +00:00
parent f25ca38376
commit 57ceca54d7
2 changed files with 15 additions and 7 deletions

View File

@@ -36,6 +36,9 @@ public interface DaoIdentity {
@Query("SELECT * FROM identity WHERE synchronize = :synchronize")
LiveData<List<EntityIdentity>> liveIdentities(boolean synchronize);
@Query("SELECT * FROM identity")
List<EntityIdentity> getIdentities();
@Query("SELECT * FROM identity WHERE id = :id")
EntityIdentity getIdentity(long id);