Removed unnecessary semicolons

This commit is contained in:
p11 2025-04-07 00:07:23 +02:00
parent cdbdaed362
commit efdc800550

View File

@ -335,7 +335,7 @@ fn handle_connection(
}
"mp3" | "wav" => reply_binary(stream, &relative_path, "audio", &ending, path),
_ => fail(stream),
};
}
return;
}
@ -544,7 +544,7 @@ fn handle_relative_connection(
} else {
pki_path.push(format!("{relative_path}/{entry}.{pki_extension}"));
audio_path.push(format!("{relative_path}/{entry}.mp3"));
};
}
let Ok(file) = File::open(pki_path) else {
return;