Browse Source

Merge pull request #266 from jitsi/tmp_ss_fix

fix(SS): Temp fix for SS when the extension is not ready after 500ms after the install
dev1
yanas 9 years ago
parent
commit
72e20d15ab
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      modules/RTC/ScreenObtainer.js

+ 1
- 1
modules/RTC/ScreenObtainer.js View File

248
                         window.setTimeout(function () {
248
                         window.setTimeout(function () {
249
                             doGetStreamFromExtension(self.options,
249
                             doGetStreamFromExtension(self.options,
250
                                 streamCallback, failCallback);
250
                                 streamCallback, failCallback);
251
-                        }, 500);
251
+                        }, 2000);
252
                     },
252
                     },
253
                     this.handleExtensionInstallationError.bind(this,
253
                     this.handleExtensionInstallationError.bind(this,
254
                         options, streamCallback, failCallback)
254
                         options, streamCallback, failCallback)

Loading…
Cancel
Save