diff options
Diffstat (limited to 'client/src/assets/player/bezels')
-rw-r--r-- | client/src/assets/player/bezels/bezels-plugin.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/assets/player/bezels/bezels-plugin.ts b/client/src/assets/player/bezels/bezels-plugin.ts index 4317d60f9..c2c251961 100644 --- a/client/src/assets/player/bezels/bezels-plugin.ts +++ b/client/src/assets/player/bezels/bezels-plugin.ts | |||
@@ -43,7 +43,7 @@ class PauseBezel extends Component { | |||
43 | this.options_ = options | 43 | this.options_ = options |
44 | 44 | ||
45 | player.on('pause', (_: any) => { | 45 | player.on('pause', (_: any) => { |
46 | if (player.seeking()) return | 46 | if (player.seeking() || player.ended()) return |
47 | this.container.innerHTML = getPauseBezel() | 47 | this.container.innerHTML = getPauseBezel() |
48 | this.showBezel() | 48 | this.showBezel() |
49 | }) | 49 | }) |