mirror of
https://github.com/video-dev/hls.js.git
synced 2026-06-16 13:34:44 +00:00
Fix initial reload time of live media playlist loaded with hls.loadSource()
Fixes #7556 Closes #7453
This commit is contained in:
@@ -236,7 +236,7 @@ export default class BasePlaylistController
|
||||
);
|
||||
if (details.requestScheduled + reloadInterval < now) {
|
||||
details.requestScheduled = now;
|
||||
} else {
|
||||
} else if (details.requestScheduled <= now) {
|
||||
details.requestScheduled += reloadInterval;
|
||||
}
|
||||
this.log(
|
||||
|
||||
Reference in New Issue
Block a user