mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
fix
This commit is contained in:
parent
742ad8c1b4
commit
b639b6b61e
@ -63,7 +63,11 @@ base::Value::Dict GetSwitchesAsValue(const base::CommandLine& cmdline) {
|
|||||||
}
|
}
|
||||||
dict.Set(key, std::move(list));
|
dict.Set(key, std::move(list));
|
||||||
} else {
|
} else {
|
||||||
|
#if BUILDFLAG(IS_WIN)
|
||||||
|
dict.Set(key, base::AsStringPiece16(value));
|
||||||
|
#else
|
||||||
dict.Set(key, value);
|
dict.Set(key, value);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return dict;
|
return dict;
|
||||||
|
Loading…
Reference in New Issue
Block a user