Update PlayableContentFeeder.py

This commit is contained in:
こうから 2021-07-08 11:28:31 +09:00 committed by GitHub
parent e8f0e024d9
commit e9c396b756
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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)