Skip to content

Commit

Permalink
fix integrated daemon argument sorting (affecting UI)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Sep 14, 2024
1 parent ea6ccc2 commit 80422e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/utils/arglist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ impl From<Arglist> for Vec<String> {
for arg in arglist.args.into_iter() {
args.insert(arg);
}
args.into_iter().collect()
let mut list = args.into_iter().collect::<Vec<_>>();
list.sort();
list
}
}

0 comments on commit 80422e7

Please sign in to comment.