diff --git a/static/js/utils.js b/static/js/utils.js index e8dd789b7..ea6fee6c7 100644 --- a/static/js/utils.js +++ b/static/js/utils.js @@ -935,6 +935,9 @@ pandora.getClipVideos = function(clip, resolution) { if (currentTime + clip.durations[i] <= start || currentTime > end) { item = null; } else { + if (clip.id) { + item.id = clip.id; + } if (currentTime <= start && currentTime + clip.durations[i] > start) { item['in'] = start - currentTime; }