Merge pull request #133 from mensinda/latin2utf8

Do not convert to Latin1 and use UTF-8 instead
This commit is contained in:
Malte Jürgens 2023-04-03 17:26:55 +00:00 committed by GitHub
commit 24727f398a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ void start(QString _target) {
}
};
std::string target = _target.toLatin1().toStdString();
std::string target = _target.toUtf8().toStdString();
auto virtual_mic = core.create("adapter",
{{"node.name", "discord-screenaudio-virtmic"},