Skip to content

Commit

Permalink
Improve error
Browse files Browse the repository at this point in the history
  • Loading branch information
mifi committed Apr 11, 2020
1 parent 130d9a2 commit d7ace5e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,8 @@ const App = memo(() => {
<div style={{ textAlign: 'left' }}>
Try one of the following before exporting again:
<ol>
<li>Select a different output <b>Format</b> (matroska takes almost everything)</li>
{detectedFileFormat === 'mp4' && <li>Change output <b>Format</b> from <b>MP4</b> to <b>MOV</b></li>}
<li>Select a different output <b>Format</b> (<b>matroska</b> takes almost everything)</li>
<li>Exclude unnecessary <b>Tracks</b></li>
<li>Try both <b>Normal cut</b> and <b>Keyframe cut</b></li>
<li>Set a different <b>Working directory</b></li>
Expand All @@ -930,7 +931,7 @@ const App = memo(() => {
if (!value) {
openSendReportDialogWithState(err);
}
}, [openSendReportDialogWithState]);
}, [openSendReportDialogWithState, detectedFileFormat]);

const cutClick = useCallback(async () => {
if (working) return;
Expand Down

0 comments on commit d7ace5e

Please sign in to comment.