diff options
Diffstat (limited to 'client/src/assets/player/videojs-components')
-rw-r--r-- | client/src/assets/player/videojs-components/resolution-menu-button.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/videojs-components/resolution-menu-button.ts b/client/src/assets/player/videojs-components/resolution-menu-button.ts index aeb48888f..445b14b2b 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-button.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-button.ts | |||
@@ -79,7 +79,7 @@ class ResolutionMenuButton extends MenuButton { | |||
79 | this.player_, | 79 | this.player_, |
80 | { | 80 | { |
81 | id: d.id, | 81 | id: d.id, |
82 | label: d.label, | 82 | label: d.id == 0 ? this.player .localize('Audio-only') : d.label, |
83 | selected: d.selected, | 83 | selected: d.selected, |
84 | callback: data.qualitySwitchCallback | 84 | callback: data.qualitySwitchCallback |
85 | }) | 85 | }) |