win: fix opus episodes are shown as text

e.g. in Binärgewitter opus feed
This commit is contained in:
Eric Le Lay 2018-05-12 19:09:03 +02:00
parent 74bc2824c2
commit dac2d2c09c

View file

@ -415,7 +415,8 @@ class EpisodeListModel(Gtk.ListStore):
status_icon = self.ICON_GENERIC_FILE
# Try to find a themed icon for this file
if filename is not None and have_gio:
# doesn't work on win32 (opus files are showed as text)
if filename is not None and have_gio and not gpodder.ui.win32:
file = Gio.File.new_for_path(filename)
if file.query_exists():
file_info = file.query_info('*', Gio.FileQueryInfoFlags.NONE, None)