diff --git a/src/mpc-hc/YoutubeDL.cpp b/src/mpc-hc/YoutubeDL.cpp index 560fa1931d5..3ca30f8a867 100644 --- a/src/mpc-hc/YoutubeDL.cpp +++ b/src/mpc-hc/YoutubeDL.cpp @@ -300,7 +300,7 @@ void GetVideoScore(YDLStreamDetails& details) { score += 1; } - if (s.iYDLMaxHeight >= details.height) { + if (s.iYDLMaxHeight > 0 && s.iYDLMaxHeight >= details.height) { score += 64; }