mirror of
https://gitlab.com/RemixDev/deemix-js.git
synced 2024-12-28 18:36:26 +00:00
Fixed USLT tag issue
This commit is contained in:
parent
096ad0029e
commit
3204e9b82c
|
@ -72,7 +72,11 @@ function tagID3(path, track, save){
|
||||||
description: 'REPLAYGAIN_TRACK_GAIN',
|
description: 'REPLAYGAIN_TRACK_GAIN',
|
||||||
value: track.replayGain
|
value: track.replayGain
|
||||||
})
|
})
|
||||||
if (save.lyrics && track.lyrics.unsync) tag.setFrame('USLT', track.lyrics.unsync)
|
if (save.lyrics && track.lyrics.unsync) tag.setFrame('USLT', {
|
||||||
|
description: '',
|
||||||
|
lyrics: track.lyrics.unsync,
|
||||||
|
language: 'XXX'
|
||||||
|
})
|
||||||
|
|
||||||
// TODO: Uncomment when implemented in lib
|
// TODO: Uncomment when implemented in lib
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue