From 998748430182e33d30018ff6ff77796ab4689ad3 Mon Sep 17 00:00:00 2001 From: David Walsh Date: Wed, 14 Oct 2020 17:07:15 -0500 Subject: [PATCH] Fix lint --- .../modals/qr-scanner/qr-scanner.component.js | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/ui/app/components/app/modals/qr-scanner/qr-scanner.component.js b/ui/app/components/app/modals/qr-scanner/qr-scanner.component.js index cb95195a5..e49309adc 100644 --- a/ui/app/components/app/modals/qr-scanner/qr-scanner.component.js +++ b/ui/app/components/app/modals/qr-scanner/qr-scanner.component.js @@ -104,14 +104,14 @@ export default class QrScanner extends Component { componentWillUnmount () { this.mounted = false clearTimeout(this.permissionChecker) - this.teardownCodeReader(); + this.teardownCodeReader() } - teardownCodeReader() { - if(this.codeReader) { - this.codeReader.reset(); - this.codeReader.stop(); - this.codeReader = null; + teardownCodeReader () { + if (this.codeReader) { + this.codeReader.reset() + this.codeReader.stop() + this.codeReader = null } } @@ -121,12 +121,12 @@ export default class QrScanner extends Component { // once we receive permission so that the video displays. // It's important to prevent this codeReader from being created twice; // Firefox otherwise starts 2 video streams, one of which cannot be stopped - if(!this.codeReader) { + if (!this.codeReader) { this.codeReader = new BrowserQRCodeReader() } try { await this.codeReader.getVideoInputDevices() - this.checkPermissions(); + this.checkPermissions() const content = await this.codeReader.decodeFromInputVideoDevice(undefined, 'video') const result = this.parseContent(content.text) if (!this.mounted) { @@ -176,7 +176,7 @@ export default class QrScanner extends Component { stopAndClose = () => { if (this.codeReader) { - this.teardownCodeReader(); + this.teardownCodeReader() } this.props.hideModal() }