1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Desktop: Fixes #6860: Made "Open profile directory" work on Windows (#6861)

This commit is contained in:
Self Not Found 2022-09-18 03:19:12 +08:00 committed by GitHub
parent c16445bc2f
commit 62eee4df56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,7 +246,7 @@ export class Bridge {
}
async openItem(fullPath: string) {
return require('electron').shell.openPath(fullPath);
return require('electron').shell.openPath(toSystemSlashes(fullPath));
}
screen() {