Fix indentation

snyk-fix-9aebb282
Mikael Finstad 2017-09-14 19:30:34 +02:00
rodzic 61a13ceabe
commit 095ffd6229
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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() {