We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 428ecd5 commit 8ff1c44Copy full SHA for 8ff1c44
1 file changed
client/src/commands/handlers/notice.rs
@@ -112,7 +112,7 @@ impl NoticeCommand {
112
if result.success {
113
if let Some(notices) = result.data {
114
println!("{}通知列表 ({}条):", type_name, notices.len());
115
- for (i, notice) in notices.iter().enumerate() {
+ for (i, notice) in notices.iter().rev().enumerate() {
116
match notice_type {
117
NoticeType::Point => {
118
let point = NoticePoint::from(notice);
0 commit comments