Avoid logging 'copied_from_parent' for Steam

This commit is contained in:
mtkennerly 2024-04-21 19:11:07 -04:00
parent 21d0726101
commit 3923c4e532
No known key found for this signature in database
GPG key ID: E764BE00BE6E6408

View file

@ -308,7 +308,14 @@ mod product_info {
for (key, value) in raw {
if key.parse::<u32>().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;
}