mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-26 07:32:08 +01:00
Fixed invalid "no messages"
This commit is contained in:
@@ -64,7 +64,6 @@ public class ViewModelBrowse extends ViewModel {
|
||||
private int pageSize;
|
||||
|
||||
int local = 0;
|
||||
int matched = 0;
|
||||
List<Long> messages = null;
|
||||
IMAPStore istore = null;
|
||||
IMAPFolder ifolder = null;
|
||||
@@ -84,13 +83,6 @@ public class ViewModelBrowse extends ViewModel {
|
||||
currentState.error = false;
|
||||
}
|
||||
|
||||
boolean isEmpty() {
|
||||
final State state = currentState;
|
||||
if (state == null)
|
||||
return true;
|
||||
return (state.matched == 0 && (state.imessages == null || state.imessages.length == 0));
|
||||
}
|
||||
|
||||
void load() throws MessagingException, IOException {
|
||||
final State state = currentState;
|
||||
if (state == null || state.error)
|
||||
@@ -136,10 +128,8 @@ public class ViewModelBrowse extends ViewModel {
|
||||
if (!match && message.content)
|
||||
match = body.toLowerCase().contains(find);
|
||||
|
||||
if (match) {
|
||||
state.matched++;
|
||||
if (match)
|
||||
db.message().setMessageFound(message.account, message.thread);
|
||||
}
|
||||
}
|
||||
|
||||
db.setTransactionSuccessful();
|
||||
|
||||
Reference in New Issue
Block a user