From 095ffd6229b63a95ecbcdb04b6fe792b73a06359 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Thu, 14 Sep 2017 19:30:34 +0200 Subject: [PATCH] Fix indentation --- src/renderer.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/renderer.jsx b/src/renderer.jsx index b5093738..941afad5 100644 --- a/src/renderer.jsx +++ b/src/renderer.jsx @@ -262,16 +262,16 @@ class App extends React.Component { progress => this.onCutProgress(progress), ); } catch (err) { - console.error('stdout:', err.stdout); - console.error('stderr:', err.stderr); + console.error('stdout:', err.stdout); + console.error('stderr:', err.stderr); - if (err.code === 1 || err.code === 'ENOENT') { + if (err.code === 1 || err.code === 'ENOENT') { return alert('Whoops! ffmpeg was unable to cut this video. It may be of an unknown format or codec combination'); } return ffmpeg.showFfmpegFail(err); } finally { this.setState({ working: false }); - } + } } capture() {