diff --git a/modules/commands/ms_list.cpp b/modules/commands/ms_list.cpp index c0c04f3f7..c0c69eb4f 100644 --- a/modules/commands/ms_list.cpp +++ b/modules/commands/ms_list.cpp @@ -80,7 +80,7 @@ class CommandMSList : public Command if (!number || number > mi->memos->size()) return; - const Memo *m = mi->GetMemo(number); + const Memo *m = mi->GetMemo(number - 1); ListFormatter::ListEntry entry; entry["Number"] = (m->unread ? "* " : " ") + stringify(number + 1);