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 c1403d4 commit af12915Copy full SHA for af12915
src/manifest.rs
@@ -172,7 +172,7 @@ impl Manifest {
172
let entry = ZipEntryBuilder::new(
173
location
174
.as_ovveride()
175
- .join(&path.strip_prefix(path.parent().unwrap())?)
+ .join(path.strip_prefix(path.parent().unwrap())?)
176
.display()
177
.to_string()
178
.into(), // This is fine... right?
src/modrinth.rs
@@ -119,7 +119,7 @@ impl Client {
119
pub async fn get_game_versions(&self) -> Result<Vec<GameVersion>> {
120
let res = self
121
.http_client
122
- .get(format!("https://api.modrinth.com/v2/tag/game_version"))
+ .get("https://api.modrinth.com/v2/tag/game_version")
123
.send()
124
.await?
125
.json()
0 commit comments