diff options
author | Chocobozzz <me@florianbigard.com> | 2020-01-29 14:23:20 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-01-29 14:23:20 +0100 |
commit | cf59a2a0c367683ba35758419499bf6087c192ec (patch) | |
tree | 98435929a97295aed5928a70c49e143991b28b0a /client | |
parent | cf57794e9b104401884998c38b2dfa7cfe9638b0 (diff) | |
parent | 8ff604c7e300eec5c0b29644292d6399521a1930 (diff) | |
download | PeerTube-cf59a2a0c367683ba35758419499bf6087c192ec.tar.gz PeerTube-cf59a2a0c367683ba35758419499bf6087c192ec.tar.zst PeerTube-cf59a2a0c367683ba35758419499bf6087c192ec.zip |
Merge branch 'release/2.1.0' into develop
Diffstat (limited to 'client')
-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 af044a9e5..0fa6272e7 100644 --- a/client/src/assets/player/videojs-components/resolution-menu-button.ts +++ b/client/src/assets/player/videojs-components/resolution-menu-button.ts | |||
@@ -72,7 +72,7 @@ class ResolutionMenuButton extends MenuButton { | |||
72 | // Skip auto resolution, we'll add it ourselves | 72 | // Skip auto resolution, we'll add it ourselves |
73 | if (d.id === -1) continue | 73 | if (d.id === -1) continue |
74 | 74 | ||
75 | const label = d.id === 0 | 75 | const label = d.label === '0p' |
76 | ? this.player().localize('Audio-only') | 76 | ? this.player().localize('Audio-only') |
77 | : d.label | 77 | : d.label |
78 | 78 | ||