Fix optional-value-conversion in speaker_media_player

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
J. Nick Koston
2026-02-27 21:19:04 -10:00
co-authored by Claude Opus 4.6
parent e2290367ab
commit 9c69a357f8
@@ -134,7 +134,7 @@ void SpeakerMediaPlayer::watch_media_commands_() {
delete media_command.url.value();
}
if (media_command.file.has_value()) {
playlist_item.file = *media_command.file;
playlist_item.file = media_command.file;
}
if (this->single_pipeline_() || (media_command.announce.has_value() && media_command.announce.value())) {