From 0dbb0bb678fd2a1cc8470ab1e7846baccc587426 Mon Sep 17 00:00:00 2001 From: Sergey Kiselev Date: Tue, 22 Oct 2024 13:31:41 +0500 Subject: [PATCH] py-yt-dlp-gui: Fixed filling of video resolution list --- py-yt-dlp-gui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-yt-dlp-gui b/py-yt-dlp-gui index 7524440..15608a8 100755 --- a/py-yt-dlp-gui +++ b/py-yt-dlp-gui @@ -137,7 +137,7 @@ class wnd(Gtk.Window): h = [] for f in info['formats']: - if f['vcodec'] != "none" and f['height'] not in h: + if isinstance(f['height'], int) and f['height'] not in h: h.append(f['height']) self.controls['resolution']['e'].append_text( "{}p".format(f['height']))