mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
fix(config): Require wrapping quotes to trim
This commit is contained in:
parent
f25830714c
commit
9c14531542
1 changed files with 5 additions and 1 deletions
|
@ -117,7 +117,11 @@ void config::parse_file() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (equal_pos + 1 < line.size()) {
|
if (equal_pos + 1 < line.size()) {
|
||||||
value = string_util::trim(forward<string>(string_util::trim(line.substr(equal_pos + 1), ' ')), '"');
|
value = forward<string>(string_util::trim(line.substr(equal_pos + 1), ' '));
|
||||||
|
size_t len{value.size()};
|
||||||
|
if (len > 2 && value[0] == '"' && value[len - 1] == '"') {
|
||||||
|
value.erase(len - 1, 1).erase(0, 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m_sections[section].emplace_hint(it, move(key), move(value));
|
m_sections[section].emplace_hint(it, move(key), move(value));
|
||||||
|
|
Loading…
Reference in a new issue