Skip to content

Commit 2406830

Browse files
authored
Fix/no memory state revlogs in reverse order on card stats screen. (#3951)
1 parent 9872645 commit 2406830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rslib/src/stats/card.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ impl Collection {
176176
}
177177
Ok(result.into_iter().rev().collect())
178178
} else {
179-
Ok(revlog.iter().map(stats_revlog_entry).collect())
179+
Ok(revlog.iter().rev().map(stats_revlog_entry).collect())
180180
}
181181
}
182182
}

0 commit comments

Comments
 (0)