Fix "disappearing threads" bug

List threads regardless whether or not the thread root was deleted.
This commit is contained in:
cketti 2012-12-18 20:46:09 +01:00
parent 3b519adf40
commit 99e7d5a692
1 changed files with 1 additions and 1 deletions

View File

@ -400,7 +400,7 @@ public class EmailProvider extends ContentProvider {
query.append(
"WHERE " +
"(h.deleted = 0 AND m.deleted = 0 AND " +
"(m.deleted = 0 AND " +
"(m.empty IS NULL OR m.empty != 1) AND " +
"h.thread_root IS NULL) ");