Skip to content

Commit fa25995

Browse files
author
dularion
committed
fix nullpinter exception in onVideoTimeupdate
1 parent df960f5 commit fa25995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/directives/streamaVideoPlayer.directive.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ angular.module('streama.videoPlayer').directive('streamaVideoPlayer', [
349349
if(!isAutoScrubberUpdate){
350350
return;
351351
}
352-
$scope.scrubber.model = video.currentTime;
352+
_.set($scope.scrubber, 'model', video.currentTime);
353353
$scope.$apply();
354354
if(skipIntro)
355355
{

0 commit comments

Comments
 (0)