From d6851ccee1cc45173f7bbbfb6b7944293d2cd19a Mon Sep 17 00:00:00 2001 From: Adam Waldron Date: Fri, 14 Jun 2024 09:25:32 -0700 Subject: [PATCH] fix: videoTimestampOffset in sourceUpdater (#1519) --- src/source-updater.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/source-updater.js b/src/source-updater.js index 853510701..09414a589 100644 --- a/src/source-updater.js +++ b/src/source-updater.js @@ -818,7 +818,7 @@ export default class SourceUpdater extends videojs.EventTarget { if (typeof offset !== 'undefined' && this.videoBuffer && // no point in updating if it's the same - this.videoTimestampOffset !== offset) { + this.videoTimestampOffset_ !== offset) { pushQueue({ type: 'video', sourceUpdater: this,