Skip to content

Commit

Permalink
src/player/mpvadapter: remove debug statement for gettitle()
Browse files Browse the repository at this point in the history
Since it is possible that media can be playing immediately on startup,
this should be removed so console isn't flooded with messages of
uninteresting failures.
  • Loading branch information
ripose-jp committed Mar 10, 2024
1 parent b2217f4 commit e4684e4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/player/mpvadapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,6 @@ QString MpvAdapter::getTitle() const
char *title = NULL;
if (mpv_get_property(m_handle, "media-title", MPV_FORMAT_STRING, &title) < 0)
{
qDebug() << "Could not get mpv media-title property";
return "";
}
QString title_str(title);
Expand Down

0 comments on commit e4684e4

Please sign in to comment.