Skip to content

Commit 6652b0f

Browse files
committed
[ HotFix ] Escape the escape char in #85
1 parent 3755bb5 commit 6652b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Platform.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static function temp_test_path(string $path = ''): string
2626

2727
public static function normalizePath(string $path): string
2828
{
29-
$path = str_replace(' ', '\ ', $path);
29+
$path = str_replace(' ', '\\ ', $path);
3030

3131
if ((new self)->isWindows()) {
3232
return str_replace('\\', '/', $path);

0 commit comments

Comments
 (0)