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 f95d90b commit 64a2682Copy full SHA for 64a2682
crates/rust-project-goals-cli-llm/src/updates.rs
@@ -113,6 +113,10 @@ async fn prepare_goals(
113
let mut comments = issue.comments.clone();
114
comments.sort_by_key(|c| c.created_at.clone());
115
comments.retain(|c| !c.is_automated_comment() && filter.matches(c));
116
+ // Prettify the comments' timestamp after using it for sorting.
117
+ for comment in comments.iter_mut() {
118
+ comment.created_at = format!("{}", comment.created_at_date());
119
+ }
120
121
let tldr = tldr(&issue_id, &mut comments)?;
122
0 commit comments