Replacing YEAR vorbis comment with DATE as YEAR is not standard

This commit is contained in:
RemixDev 2020-09-19 17:43:29 +02:00
parent ceef735d29
commit d9fa7927de
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ def tagFLAC(stream, track, save):
if save['date']:
tag["DATE"] = track.dateString
elif save['year']:
tag["YEAR"] = str(track.date['year'])
tag["DATE"] = str(track.date['year'])
if save['length']:
tag["LENGTH"] = str(track.duration)
if save['bpm']: