Skip to content

Commit

Permalink
Fix tslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Borewit committed Jul 2, 2017
1 parent 6a6f75a commit d48812a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/monkeysaudio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,10 +254,10 @@ export class ApeParser implements ITokenParser {
for (const val of values) {
tags.push({id: key, value: val});
}
}
break;
}

case DataType.binary: { // binary (probably artwork)
case DataType.binary: // binary (probably artwork)
if (includeCovers && (key === 'Cover Art (Front)' || key === 'Cover Art (Back)')) {
const picData = buffer.slice(offset, offset + size);

Expand All @@ -274,7 +274,6 @@ export class ApeParser implements ITokenParser {
offset += size;
tags.push({id: key, value: picture});
}
}
break;

default:
Expand Down

0 comments on commit d48812a

Please sign in to comment.