mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 13:50:06 +03:00
Fix typo
This commit is contained in:
parent
b378728eba
commit
cbbf2970c1
2 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue