Fixes issues with the recording.
This commit is contained in:
parent
394738394d
commit
51277270fe
|
@ -3084,9 +3084,9 @@ function setRecordingToken(token) {
|
||||||
|
|
||||||
function setRecording(state, token, callback, connection) {
|
function setRecording(state, token, callback, connection) {
|
||||||
if (useJirecon){
|
if (useJirecon){
|
||||||
this.setRecordingJirecon(state, token, callback, connection);
|
setRecordingJirecon(state, token, callback, connection);
|
||||||
} else {
|
} else {
|
||||||
this.setRecordingColibri(state, token, callback, connection);
|
setRecordingColibri(state, token, callback, connection);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,9 +25,9 @@ function setRecordingToken(token) {
|
||||||
|
|
||||||
function setRecording(state, token, callback, connection) {
|
function setRecording(state, token, callback, connection) {
|
||||||
if (useJirecon){
|
if (useJirecon){
|
||||||
this.setRecordingJirecon(state, token, callback, connection);
|
setRecordingJirecon(state, token, callback, connection);
|
||||||
} else {
|
} else {
|
||||||
this.setRecordingColibri(state, token, callback, connection);
|
setRecordingColibri(state, token, callback, connection);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue