Skip to content

Commit

Permalink
fix: remove USER frame as single
Browse files Browse the repository at this point in the history
  • Loading branch information
eidoriantan committed Nov 21, 2024
1 parent 72c0eb9 commit 5cd2571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/id3v2/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function decode (buffer, tagOffset, parseUnsupported) {
let limit = size

const pushTag = (tag) => {
const singleFrame = ['USER', 'OWNE', 'MCDI', 'RVAD', 'SYTC', 'ETCO', 'PCNT']
const singleFrame = ['OWNE', 'MCDI', 'RVAD', 'SYTC', 'ETCO', 'PCNT']
switch (typeof tag.value) {
case 'number':
case 'string':
Expand Down

0 comments on commit 5cd2571

Please sign in to comment.