Skip to content

Commit

Permalink
fix(toDash): Fix image representations not being spec compliant (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue authored Jun 24, 2024
1 parent d6fa134 commit e5aab9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/StreamingInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ function getImageRepresentation(
thumbnail_width: board.thumbnail_width,
rows: board.rows,
columns: board.columns,
template_duration: template_duration,
template_duration: Math.round(template_duration),
template_url: transform_url(template_url).toString(),
getURL(n) {
return template_url.toString().replace('$Number$', n.toString());
Expand Down

0 comments on commit e5aab9a

Please sign in to comment.