Skip to content

Commit 6fe7815

Browse files
committed
fix 961140f extend EPG plugin to handle WAV
1 parent f1d7ed0 commit 6fe7815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ def _validation_test_files(files_string, comma=True):
10521052
return __validation_test_files(files_string, comma)
10531053
elif files_string:
10541054
lastfile = files_string.split(',')[-1]
1055-
ext = os.path.splitext(M.audio_read_strip_rec(lastfile))
1055+
ext = os.path.splitext(M.audio_read_strip_rec(lastfile))[1]
10561056
if ext in M.audio_read_exts():
10571057
return [files_string] if comma else files_string.split(',')
10581058
elif os.path.isdir(files_string):

0 commit comments

Comments
 (0)