Skip to content

Commit

Permalink
fix(mp3-encoder): Suppress assertion (#1481)
Browse files Browse the repository at this point in the history
  • Loading branch information
tassoevan authored Nov 21, 2024
1 parent 4910d29 commit 8084488
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/ninety-monkeys-notice.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/mp3-encoder': patch
---

Suppressed assertions at the LAME encoding due to unknown `NaN` values
7 changes: 5 additions & 2 deletions packages/mp3-encoder/src/lame/assert.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
export function assert(
condition: boolean,
message?: string,
_message?: string,
): asserts condition {
if (!condition) {
throw new Error(message);
// TODO: There is a condition generating multiple NaN values that was never
// addressed in the original code and is not clear how to handle it.
// Originally this assertion was commented out, probably because of it.
// throw new Error(message);
}
}

0 comments on commit 8084488

Please sign in to comment.