Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 27, 2022
1 parent 10110fd commit 108111e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/export.ts
Expand Up @@ -245,7 +245,7 @@ export const setUpExportsListeners = () => {

if (conversion && (await conversion.filePathExists()) && exportMap?.status === ExportStatus.completed) {
event.sender.startDrag({
file: exportMap?.finalFilePath || conversion.convertedFilePath,
file: exportMap?.finalFilePath ?? conversion.convertedFilePath,
icon: await conversion.video.getDragIcon(conversion.options)
});
}
Expand Down

0 comments on commit 108111e

Please sign in to comment.