Fix multiple missing UTF-8 decoding.
This commit is contained in:
parent
1f0dc02649
commit
c69e0d16bc
13 changed files with 22 additions and 22 deletions
|
|
@ -283,9 +283,9 @@ Array AudioDriverALSA::get_device_list() {
|
|||
|
||||
if (name != nullptr && !strncmp(name, "plughw", 6)) {
|
||||
if (desc) {
|
||||
list.push_back(String(name) + ";" + String(desc));
|
||||
list.push_back(String::utf8(name) + ";" + String::utf8(desc));
|
||||
} else {
|
||||
list.push_back(String(name));
|
||||
list.push_back(String::utf8(name));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue