This is an automated email from the git hooks/post-receive script. New commit to branch support-webpack in repository oipf-stub. See https://gitlab.nuiton.org/codelutin/oipf-stub.git commit e86517ab215a7f0ed355634a0e5893184d7dfa62 Author: Julien Ruchaud <ruchaud@codelutin.com> Date: Tue Mar 7 15:25:10 2017 +0100 Fix error on date --- src/broadcast/VideoBroadcastObject.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/broadcast/VideoBroadcastObject.js b/src/broadcast/VideoBroadcastObject.js index 8dcef09..78bf128 100644 --- a/src/broadcast/VideoBroadcastObject.js +++ b/src/broadcast/VideoBroadcastObject.js @@ -54,7 +54,7 @@ module.exports = function(ctx) { // configure video source ctx.config.videoBroadcastVideoEndpoint = ctx.config.videoBroadcastVideoEndpoint; ctx.config.videoBroadcastVideoExtension = ctx.config.videoBroadcastVideoExtension || ".mp4"; - ctx.config.videoBroadcastStartDate = ctx.config.videoBroadcastStartDate || ctx.config.now(); + ctx.config.videoBroadcastStartDate = ctx.config.videoBroadcastStartDate || ctx.config.now; // use __internal__ with name, all VideoBroadcastObject // use same __internal__ object @@ -1933,7 +1933,7 @@ module.exports = function(ctx) { clearTimeout(this.__internal__.firstProgrammeTimeout); - let now = ctx.config.now() / 1000; + let now = ctx.config.now / 1000; let promise; if (ctx.dataProvider.useMetadataConstraint()) { -- To stop receiving notification emails like this one, please contact SCM administrator <admin+scm@forge.codelutin.com>.