Removes unnecessary error dialog when desktop sharing is started before the conference.
This commit is contained in:
parent
1825f47ef2
commit
e465b3ed90
|
@ -19,7 +19,7 @@
|
||||||
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
|
||||||
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
|
||||||
<script src="interface_config.js?v=5"></script>
|
<script src="interface_config.js?v=5"></script>
|
||||||
<script src="libs/app.bundle.js?v=26"></script>
|
<script src="libs/app.bundle.js?v=27"></script>
|
||||||
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
|
||||||
<link rel="stylesheet" href="css/font.css?v=6"/>
|
<link rel="stylesheet" href="css/font.css?v=6"/>
|
||||||
<link rel="stylesheet" href="css/toastr.css?v=1">
|
<link rel="stylesheet" href="css/toastr.css?v=1">
|
||||||
|
|
34398
libs/app.bundle.js
34398
libs/app.bundle.js
File diff suppressed because it is too large
Load Diff
|
@ -251,9 +251,7 @@ var XMPP = {
|
||||||
connection.jingle.activecall.switchStreams(stream, oldStream, callback);
|
connection.jingle.activecall.switchStreams(stream, oldStream, callback);
|
||||||
} else {
|
} else {
|
||||||
// We are done immediately
|
// We are done immediately
|
||||||
console.error("No conference handler");
|
console.warn("No conference handler or conference not started yet");
|
||||||
APP.UI.messageHandler.showError("dialog.error",
|
|
||||||
"dialog.unableToSwitch");
|
|
||||||
callback();
|
callback();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue