diff --git a/src/steam.rs b/src/steam.rs index a545a412..a3579c53 100644 --- a/src/steam.rs +++ b/src/steam.rs @@ -308,7 +308,14 @@ mod product_info { for (key, value) in raw { if key.parse::().is_err() { - println!(" parse_vec: unexpected key '{}'", key); + match key.as_str() { + "copied_from_parent" => { + // TODO: What does this mean? + } + _ => { + println!(" parse_vec: unexpected key '{}'", key); + } + } continue; }