Skip to content

Commit

Permalink
Remove Lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirox committed Oct 26, 2020
1 parent 13a4f29 commit 9b27e8e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/scene-entry-manager.js
Expand Up @@ -619,10 +619,10 @@ export default class SceneEntryManager {
await new Promise(resolve => audioEl.addEventListener("canplay", resolve));

const audioStream = audioEl.captureStream
? audioEl.captureStream()
: audioEl.mozCaptureStream
? audioEl.mozCaptureStream()
: null;
? audioEl.captureStream()
: audioEl.mozCaptureStream
? audioEl.mozCaptureStream()
: null;

if (audioStream) {
let audioVolume = Number(qs.get("audio_volume") || "1.0");
Expand Down

0 comments on commit 9b27e8e

Please sign in to comment.