You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here are the execution logs:
flutter: C: a22 STATUS "INBOX" (UNSEEN)
flutter: S: * STATUS INBOX (UNSEEN 2)
flutter: C: untagged not handled: [* STATUS INBOX (UNSEEN 2)
] by task a22 STATUS "INBOX" (UNSEEN)
flutter: S: a22 OK Status completed (0.001 + 0.000 secs).
flutter: statusResult.messagesUnseen = 0
What i expected:
flutter: statusResult.messagesUnseen = 2;
It happens with any mailbox.
The text was updated successfully, but these errors were encountered:
I tried this code
final statusResult = await imapClient.statusMailbox(box, [ StatusFlags.unseen, ]); print("statusResult.messagesUnseen = ${statusResult.messagesUnseen}");
Here are the execution logs:
flutter: C: a22 STATUS "INBOX" (UNSEEN)
flutter: S: * STATUS INBOX (UNSEEN 2)
flutter: C: untagged not handled: [* STATUS INBOX (UNSEEN 2)
] by task a22 STATUS "INBOX" (UNSEEN)
flutter: S: a22 OK Status completed (0.001 + 0.000 secs).
flutter: statusResult.messagesUnseen = 0
What i expected:
flutter: statusResult.messagesUnseen = 2;
It happens with any mailbox.
The text was updated successfully, but these errors were encountered: