Skip to content

Commit fcd1df9

Browse files
authored
Merge pull request #1648 from 0xfe/mscuthbert-patch-1
Always truthy error
2 parents 139bcef + 046941e commit fcd1df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tables.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ export class Tables {
635635
let customNoteHeadProps = {};
636636
if (pieces.length > 2 && pieces[2]) {
637637
const glyphName = pieces[2].toUpperCase();
638-
customNoteHeadProps = { code: this.codeNoteHead(glyphName, duration) } || {};
638+
customNoteHeadProps = { code: this.codeNoteHead(glyphName, duration) };
639639
}
640640

641641
return {

0 commit comments

Comments
 (0)