branch support-webpack updated (3e09a0a -> e86517a)
This is an automated email from the git hooks/post-receive script. New change to branch support-webpack in repository oipf-stub. See https://gitlab.nuiton.org/codelutin/oipf-stub.git from 3e09a0a Fix require new e86517a Fix error on date The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit e86517ab215a7f0ed355634a0e5893184d7dfa62 Author: Julien Ruchaud <ruchaud@codelutin.com> Date: Tue Mar 7 15:25:10 2017 +0100 Fix error on date Summary of changes: src/broadcast/VideoBroadcastObject.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact SCM administrator <admin+scm@forge.codelutin.com>.
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>.
participants (1)
-
scm