|
|
@@ -91,7 +91,7 @@ export default class LargeVideoManager {
|
|
91
|
91
|
* Called when the media connection has been interrupted.
|
|
92
|
92
|
*/
|
|
93
|
93
|
onVideoInterrupted () {
|
|
94
|
|
- this.enableVideoProblemFilter(true);
|
|
|
94
|
+ this.enableLocalConnectionProblemFilter(true);
|
|
95
|
95
|
let reconnectingKey = "connection.RECONNECTING";
|
|
96
|
96
|
$('#videoConnectionMessage')
|
|
97
|
97
|
.attr("data-i18n", reconnectingKey)
|
|
|
@@ -104,7 +104,7 @@ export default class LargeVideoManager {
|
|
104
|
104
|
* Called when the media connection has been restored.
|
|
105
|
105
|
*/
|
|
106
|
106
|
onVideoRestored () {
|
|
107
|
|
- this.enableVideoProblemFilter(false);
|
|
|
107
|
+ this.enableLocalConnectionProblemFilter(false);
|
|
108
|
108
|
this.showVideoConnectionMessage(false);
|
|
109
|
109
|
}
|
|
110
|
110
|
|
|
|
@@ -240,12 +240,13 @@ export default class LargeVideoManager {
|
|
240
|
240
|
}
|
|
241
|
241
|
|
|
242
|
242
|
/**
|
|
243
|
|
- * Enables/disables the filter indicating a video problem to the user.
|
|
|
243
|
+ * Enables/disables the filter indicating a video problem to the user caused
|
|
|
244
|
+ * by the problems with local media connection.
|
|
244
|
245
|
*
|
|
245
|
246
|
* @param enable <tt>true</tt> to enable, <tt>false</tt> to disable
|
|
246
|
247
|
*/
|
|
247
|
|
- enableVideoProblemFilter (enable) {
|
|
248
|
|
- this.videoContainer.enableVideoProblemFilter(enable);
|
|
|
248
|
+ enableLocalConnectionProblemFilter (enable) {
|
|
|
249
|
+ this.videoContainer.enableLocalConnectionProblemFilter(enable);
|
|
249
|
250
|
}
|
|
250
|
251
|
|
|
251
|
252
|
/**
|