Skip to content

Commit

Permalink
Fixed the YT-music provider
Browse files Browse the repository at this point in the history
  • Loading branch information
WolverinDEV committed Mar 2, 2020
1 parent c1df911 commit ae7f8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/yt/YoutubeMusicPlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using namespace music::player;

YoutubeMusicPlayer::YoutubeMusicPlayer(std::shared_ptr<yt::AudioInfo> info) : FFMpegMusicPlayer{info->stream_url, FFMPEGURLType::STREAM}, video{std::move(info)} {}
YoutubeMusicPlayer::YoutubeMusicPlayer(std::shared_ptr<yt::AudioInfo> info) : FFMpegMusicPlayer{info->stream_url, FFMPEGURLType::STREAM, FallbackStreamInfo{}}, video{std::move(info)} {}
YoutubeMusicPlayer::~YoutubeMusicPlayer() = default;

std::string music::player::YoutubeMusicPlayer::songTitle() {
Expand Down

0 comments on commit ae7f8c7

Please sign in to comment.