fix opening windows dao links

This commit is contained in:
BtcContributor 2021-03-02 13:14:25 +01:00
parent 411395bf94
commit e28843dd41
No known key found for this signature in database
GPG key ID: DA582457496C7F6D

View file

@ -63,7 +63,7 @@ class DesktopUtil {
}
if (os.isWindows()) {
return runCommand("explorer", "%s", what);
return runCommand("explorer", "%s", "\"" + what + "\"");
}
return false;