Fixes broken call to waitForPlayback in lastN logic.

This commit is contained in:
paweldomas 2016-02-01 15:37:10 -06:00
parent 48cedb0865
commit 0bf98bf6cf
1 changed files with 2 additions and 1 deletions

View File

@ -709,7 +709,8 @@ var VideoLayout = {
updateLargeVideo = false; updateLargeVideo = false;
} }
remoteVideo.waitForPlayback( remoteVideo.waitForPlayback(
remoteVideo.selectVideoElement(), remoteVideo.videoStream); remoteVideo.selectVideoElement()[0],
remoteVideo.videoStream);
} }
}); });
} }