Skip to content

Commit

Permalink
fix: Sort contributors case insensitive (#1015)
Browse files Browse the repository at this point in the history
when generating Northstar release notes
  • Loading branch information
GeckoEidechse authored Sep 14, 2024
1 parent 01d3615 commit 02edf72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-tauri/src/github/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ pub fn compare_tags_northstar(first_tag: Tag, second_tag: Tag) -> Result<String,

// Convert the set to a sorted vector.
let mut sorted_vec: Vec<String> = authors_set.into_iter().collect();
sorted_vec.sort();
sorted_vec.sort_by_key(|a| a.to_lowercase());

// Define a string to prepend to each element.
let prefix = "@";
Expand Down

0 comments on commit 02edf72

Please sign in to comment.