Skip to content

Commit acf37f8

Browse files
committed
Fix regression from previous commit. Once again use .flv as extension, as this improves compatibility with certain misbehaving (older) GStreamer–based players.
1 parent 2b72f2a commit acf37f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: iview-gtk

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def on_download_clicked(widget, data=None):
216216

217217
program = model.get(model.iter_parent(selected_iter), 0, 1)[0]
218218
title = item[0]
219-
ext = item[1].split(".")[-1]
219+
ext = 'flv' # ABC always provides us with an FLV container
220220
# for specials that title == program, just use program.ext
221221
if program == title:
222222
filename = "%s.%s" %(program, ext)

0 commit comments

Comments
 (0)