ソースを参照

fix(temasys): modify truthy check for mobile safari

tags/v0.0.2
Leonard Kim 7年前
コミット
7ab5434a82
1個のファイルの変更2行の追加1行の削除
  1. 2
    1
      modules/RTC/RTCUtils.js

+ 2
- 1
modules/RTC/RTCUtils.js ファイルの表示

@@ -138,7 +138,8 @@ function initRawEnumerateDevicesWithCallback() {
138 138
             // "ReferenceError: Can't find variable: MediaStreamTrack" when
139 139
             // Temasys plugin is not installed yet, have to delay this call
140 140
             // until WebRTC is ready.
141
-            : MediaStreamTrack && MediaStreamTrack.getSources
141
+            : typeof MediaStreamTrack !== 'undefined'
142
+                && MediaStreamTrack.getSources
142 143
                 ? function(callback) {
143 144
                     MediaStreamTrack.getSources(
144 145
                         sources =>

読み込み中…
キャンセル
保存