Fix multiple missing UTF-8 decoding.

This commit is contained in:
bruvzg
2022-01-06 11:34:10 +02:00
parent 1f0dc02649
commit c69e0d16bc
13 changed files with 22 additions and 22 deletions

View File

@@ -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));
}
}