Skip to content

Commit

Permalink
Update export error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyCA committed Jun 24, 2022
1 parent 016867d commit 1d27c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Mixer/MixerPlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class MixerPlayer extends React.Component<Props, State> {
});
} catch (ex: any) {
this.setState({
exportError: ex.message,
exportError: ex.message + '\nCheck ENABLE_CROSS_ORIGIN_HEADERS=1 is set and HTTPS is enabled.',
isExportInitializing: false,
});
console.error(ex);
Expand Down

0 comments on commit 1d27c3f

Please sign in to comment.