Skip to content

Commit

Permalink
fix(transcript) duplicated namespace (jitsi#14151)
Browse files Browse the repository at this point in the history
  • Loading branch information
quitrk authored Dec 13, 2023
1 parent 6e35e5b commit c6b7ec7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions react/features/subtitles/actions.any.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ export function toggleRequestingSubtitles() {
export function setRequestingSubtitles(
enabled: boolean,
displaySubtitles = true,
language: string | null = DEFAULT_LANGUAGE) {
language: string | null = `translation-languages:${DEFAULT_LANGUAGE}`) {
return {
type: SET_REQUESTING_SUBTITLES,
displaySubtitles,
enabled,
language: `translation-languages:${language}`
language
};
}

0 comments on commit c6b7ec7

Please sign in to comment.