Skip to content

Commit

Permalink
Fix "Open logs folder" button for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgelenas committed Feb 13, 2021
1 parent 1b643fa commit f17f358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,5 +275,5 @@ ipcMain.on(
);

ipcMain.on(IpcRequest.OpenLogsFolder, () => {
shell.showItemInFolder(`${logsPath}/${logsFilename}`);
shell.showItemInFolder(path.join(logsPath, logsFilename));
});

0 comments on commit f17f358

Please sign in to comment.