Skip to content
This repository has been archived by the owner on Jun 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #133 from mensinda/latin2utf8
Browse files Browse the repository at this point in the history
Do not convert to Latin1 and use UTF-8 instead
  • Loading branch information
maltejur committed Apr 3, 2023
2 parents 08cb713 + c43e995 commit 24727f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virtmic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"},
Expand Down

0 comments on commit 24727f3

Please sign in to comment.