We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e19e0d4 commit e9c7047Copy full SHA for e9c7047
muttator/content/mail.js
@@ -376,7 +376,7 @@ const Mail = Module("mail", {
376
for (let j = (i == currentIndex() && !reverse) ? 1 : (reverse ? thread.numChildren - 1 : 0);
377
reverse ? (j >= 0) : (j < thread.numChildren);
378
reverse ? j-- : j++) {
379
- msg = thread.getChildAt(j);
+ msg = thread.getChild(thread.getChildKeyAt(j));
380
if (validatorFunc(msg) && --count == 0) {
381
// this hack is needed to get the correct message, because getChildAt() does not
382
// necessarily return the messages in the order they are displayed
0 commit comments