Avoid logging 'copied_from_parent' for Steam
This commit is contained in:
parent
21d0726101
commit
3923c4e532
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue