This commit is contained in:
Gabe Kangas 2022-04-27 23:16:09 -07:00 committed by GitHub
parent b378728eba
commit cbbf2970c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -402,7 +402,7 @@ function getCurrentlyPlayingSegment(tech) {
var segment;
// Itinerate trough available segments and get first within which snapshot_time is
// Iterate trough available segments and get first within which snapshot_time is
for (var i = 0, l = target_media.segments.length; i < l; i++) {
// Note: segment.end may be undefined or is not properly set
if (snapshot_time < target_media.segments[i].end) {

View file

@ -253,7 +253,7 @@ function getCurrentlyPlayingSegment(tech, old_segment = null) {
var segment;
var segment_time;
// Itinerate trough available segments and get first within which snapshot_time is
// Iterate trough available segments and get first within which snapshot_time is
for (var i = 0, l = target_media.segments.length; i < l; i++) {
// Note: segment.end may be undefined or is not properly set
if (snapshot_time < target_media.segments[i].end) {