Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Geometrically committed Oct 21, 2024
1 parent 5605910 commit 70bf61a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions apps/daedalus_client/src/forge.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
use crate::util::{
download_file, fetch_json, fetch_xml, format_url,
};
use crate::util::{download_file, fetch_json, fetch_xml, format_url};
use crate::{insert_mirrored_artifact, Error, MirrorArtifact, UploadFile};
use chrono::{DateTime, Utc};
use daedalus::get_path_from_artifact;
Expand Down
3 changes: 2 additions & 1 deletion packages/daedalus/src/modded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ pub fn merge_partial_version(
downloads: merge.downloads,
id: partial.id.replace(DUMMY_REPLACE_STRING, &merge_id),
java_version: merge.java_version,
libraries: libraries.into_iter()
libraries: libraries
.into_iter()
.chain(partial.libraries)
.map(|mut x| {
x.name = x.name.replace(DUMMY_REPLACE_STRING, &merge_id);
Expand Down

0 comments on commit 70bf61a

Please sign in to comment.