Skip to content

Commit

Permalink
🐛 Fix audio track labels (#2815)
Browse files Browse the repository at this point in the history
  • Loading branch information
moisout authored Jun 11, 2024
1 parent ff3a6dc commit b9bc7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/utils/videoplayer/adapters/rxPlayerAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export const rxPlayerAdapter = async ({
.map(track => {
return {
language: track.language,
label: track.language,
label: track.label,
active: track.active
};
})
Expand Down

0 comments on commit b9bc7c0

Please sign in to comment.