diff --git a/frontend/app/components/Session_/Player/Controls/Controls.js b/frontend/app/components/Session_/Player/Controls/Controls.js index 1dd7283fc..e8088299c 100644 --- a/frontend/app/components/Session_/Player/Controls/Controls.js +++ b/frontend/app/components/Session_/Player/Controls/Controls.js @@ -253,8 +253,8 @@ export default class Controls extends React.Component { const inspectorMode = bottomBlock === INSPECTOR; return ( -
- +
+ { !live && } { !fullscreen &&
{ !live ? diff --git a/frontend/app/player/Player.ts b/frontend/app/player/Player.ts index b835c7934..ffc36c022 100644 --- a/frontend/app/player/Player.ts +++ b/frontend/app/player/Player.ts @@ -152,6 +152,9 @@ export default class Player extends MessageDistributor { } jump(time = getState().time, index) { + const { live } = getState(); + if (live) return; + if (getState().playing) { cancelAnimationFrame(this._animationFrameRequestId); // this._animationFrameRequestId = requestAnimationFrame(() => {