Update PlayableContentFeeder.py

This commit is contained in:
こうから
2021-07-08 11:28:31 +09:00
committed by GitHub
parent e8f0e024d9
commit e9c396b756

View File

@@ -30,7 +30,7 @@ class PlayableContentFeeder:
if len(track.file) > 0:
return track
for alt in track.alternative_list:
for alt in track.alternative:
if len(alt.file) > 0:
return Metadata.Track(file=alt.file)