From 51277270fe08c29e0937fa8725ac8fb140faa5bb Mon Sep 17 00:00:00 2001 From: hristoterezov Date: Tue, 20 Jan 2015 18:12:32 +0200 Subject: [PATCH] Fixes issues with the recording. --- libs/modules/xmpp.bundle.js | 4 ++-- modules/xmpp/recording.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/modules/xmpp.bundle.js b/libs/modules/xmpp.bundle.js index e544fd9d2..f382c773a 100644 --- a/libs/modules/xmpp.bundle.js +++ b/libs/modules/xmpp.bundle.js @@ -3084,9 +3084,9 @@ function setRecordingToken(token) { function setRecording(state, token, callback, connection) { if (useJirecon){ - this.setRecordingJirecon(state, token, callback, connection); + setRecordingJirecon(state, token, callback, connection); } else { - this.setRecordingColibri(state, token, callback, connection); + setRecordingColibri(state, token, callback, connection); } } diff --git a/modules/xmpp/recording.js b/modules/xmpp/recording.js index f3dc118fb..f3f91ed12 100644 --- a/modules/xmpp/recording.js +++ b/modules/xmpp/recording.js @@ -25,9 +25,9 @@ function setRecordingToken(token) { function setRecording(state, token, callback, connection) { if (useJirecon){ - this.setRecordingJirecon(state, token, callback, connection); + setRecordingJirecon(state, token, callback, connection); } else { - this.setRecordingColibri(state, token, callback, connection); + setRecordingColibri(state, token, callback, connection); } }