Переглянути джерело

Lowers minimal required Chrome version for desktop sharing to 34.

j8
paweldomas 11 роки тому
джерело
коміт
d7f2d5f9eb
1 змінених файлів з 1 додано та 1 видалено
  1. 1
    1
      desktopsharing.js

+ 1
- 1
desktopsharing.js Переглянути файл

@@ -33,7 +33,7 @@ function isDesktopSharingEnabled() {
33 33
             // We can assume that user agent is chrome, because it's enforced when 'ext' streaming method is set
34 34
             var ver = parseInt(userAgent.match(/chrome\/(\d+)\./)[1], 10);
35 35
             console.log("Chrome version" + userAgent, ver);
36
-            _desktopSharingEnabled = ver >= 35;
36
+            _desktopSharingEnabled = ver >= 34;
37 37
         } else {
38 38
             _desktopSharingEnabled = obtainDesktopStream === obtainWebRTCScreen;
39 39
         }

Завантаження…
Відмінити
Зберегти