fix delete note on other platform but it still remains

This commit is contained in:
houxg
2016-12-22 13:38:46 +08:00
parent a8076bfc55
commit d4aba9db95

View File

@@ -113,6 +113,7 @@ public class AppDataBase {
.and(Note_Table.userId.eq(userId))
.and(Note_Table.isTrash.eq(false))
.and(Note_Table.isDeleted.eq(false))
.and(Note_Table.isTrash.eq(false))
.queryList();
}
@@ -130,6 +131,7 @@ public class AppDataBase {
.where(Note_Table.userId.eq(userId))
.and(Note_Table.isTrash.eq(false))
.and(Note_Table.isDeleted.eq(false))
.and(Note_Table.isTrash.eq(false))
.queryList();
}