Don't fail findUpMedia when serverConnection is null.
This avoids throwing if the user changes their setting before login. Thanks to Jean-Jacques Sarton.
This commit is contained in:
@@ -1761,6 +1761,8 @@ function closeUpMedia(label) {
|
|||||||
* @returns {Stream}
|
* @returns {Stream}
|
||||||
*/
|
*/
|
||||||
function findUpMedia(label) {
|
function findUpMedia(label) {
|
||||||
|
if(!serverConnection)
|
||||||
|
return null;
|
||||||
for(let id in serverConnection.up) {
|
for(let id in serverConnection.up) {
|
||||||
let c = serverConnection.up[id];
|
let c = serverConnection.up[id];
|
||||||
if(c.label === label)
|
if(c.label === label)
|
||||||
|
|||||||
Reference in New Issue
Block a user