*: let libfmt quote strings
This commit is contained in:
@@ -623,7 +623,7 @@ Player::CheckDecoderStartup(std::unique_lock<Mutex> &lock) noexcept
|
||||
if (!paused && !OpenOutput()) {
|
||||
FmtError(player_domain,
|
||||
"problems opening audio device "
|
||||
"while playing \"{}\"",
|
||||
"while playing {:?}",
|
||||
dc.song->GetURI());
|
||||
return true;
|
||||
}
|
||||
@@ -1065,7 +1065,7 @@ Player::SongBorder() noexcept
|
||||
{
|
||||
const ScopeUnlock unlock(pc.mutex);
|
||||
|
||||
FmtNotice(player_domain, "played \"{}\"", song->GetURI());
|
||||
FmtNotice(player_domain, "played {:?}", song->GetURI());
|
||||
|
||||
ReplacePipe(dc.pipe);
|
||||
|
||||
@@ -1211,7 +1211,7 @@ Player::Run() noexcept
|
||||
cross_fade_tag.reset();
|
||||
|
||||
if (song != nullptr) {
|
||||
FmtNotice(player_domain, "played \"{}\"", song->GetURI());
|
||||
FmtNotice(player_domain, "played {:?}", song->GetURI());
|
||||
song.reset();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user