diff options
-rw-r--r-- | src/client/util/ReplayMovements.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/ReplayMovements.ts b/src/client/util/ReplayMovements.ts index 8e8bfca02..4122908cc 100644 --- a/src/client/util/ReplayMovements.ts +++ b/src/client/util/ReplayMovements.ts @@ -43,7 +43,7 @@ export class ReplayMovements { setVideoBox = async (videoBox: VideoBox) => { // console.info('setVideoBox', videoBox); - if (videoBox !== null) { console.warn('setVideoBox on already videoBox'); } + if (this.videoBox !== null) { console.warn('setVideoBox on already videoBox'); } if (this.videoBoxDisposeFunc !== null) { console.warn('setVideoBox on already videoBox dispose func'); this.videoBoxDisposeFunc(); } |