@desynova-digital/player 3.8.1 → 3.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Video.js +2 -2
- package/package.json +1 -1
package/components/Video.js
CHANGED
|
@@ -774,8 +774,8 @@ var Video = function (_Component) {
|
|
|
774
774
|
currentSubtitleObj: {
|
|
775
775
|
line1: currentValue[0] && currentValue[0].line1 || '',
|
|
776
776
|
line2: currentValue[0] && currentValue[0].line2 || '',
|
|
777
|
-
start_time: currentValue[0] && currentValue[0].start_time ||
|
|
778
|
-
end_time: currentValue[0] && currentValue[0].end_time ||
|
|
777
|
+
start_time: currentValue[0] && currentValue[0].start_time || 0,
|
|
778
|
+
end_time: currentValue[0] && currentValue[0].end_time || 0,
|
|
779
779
|
style: style
|
|
780
780
|
}
|
|
781
781
|
});
|