1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-04-19 11:46:50 +00:00

fix: check of osc files within osb files

This commit is contained in:
Paul-Christian Volkmer 2024-12-10 23:06:57 +01:00
parent b242703452
commit 55cc9eeb29

View File

@ -63,7 +63,7 @@ pub fn check_file(file: &Path, password: &str) -> Result<Vec<CheckNotice>, Check
if zip_file.is_file() && zip_file.name().ends_with(".osc") { if zip_file.is_file() && zip_file.name().ends_with(".osc") {
let mut buf = String::new(); let mut buf = String::new();
let _ = zip_file.read_to_string(&mut buf); let _ = zip_file.read_to_string(&mut buf);
match osc::check(buf) { match osc::check(&buf) {
Ok(ref mut check_result) => { Ok(ref mut check_result) => {
result.push(CheckNotice::Info { result.push(CheckNotice::Info {
description: format!("Prüfe Eintrag '{}'", zip_file.name()), description: format!("Prüfe Eintrag '{}'", zip_file.name()),