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
Imported mails cannot be selected due to the stop condition relying on mailId comparison in the loadAndSelect function in MailViewModel. Mails are sorted by received date in the MailListModel, but the encoded date in the mailId is the date the mails were created in the server. Therefore, the current stop condition using the mailId is not sufficient to find out whether we have already loaded mails older than the mail we're looking for.
Expected behavior
Implementation of a suitable stop condition that accounts for the imported mails case and relys on the comparison of mailSetEntryElementIds. One approach would be to modify the URL and pass /mailSetElementId/mailSetEntryElementId/ instead of /mailSetElementId/mailElementId/
Imported mails cannot be selected due to the stop condition relying on
mailId
comparison in theloadAndSelect
function inMailViewModel
. Mails are sorted by received date in theMailListModel
, but the encoded date in themailId
is the date the mails were created in the server. Therefore, the current stop condition using themailId
is not sufficient to find out whether we have already loaded mails older than the mail we're looking for.Expected behavior
Implementation of a suitable stop condition that accounts for the imported mails case and relys on the comparison of
mailSetEntryElementId
s. One approach would be to modify the URL and pass/mailSetElementId/mailSetEntryElementId/
instead of/mailSetElementId/mailElementId/
Version [261.250116.0]
Additional context
MailViewModel.ts
The text was updated successfully, but these errors were encountered: