Skip to content

Commit 349c113

Browse files
committed
Watch out for windows paths
1 parent 70289ef commit 349c113

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

controller/manifest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function handle(): JsonResponse
5353
$board_path = $this->config['force_server_vars'] ? $this->config['script_path'] : (parse_url($board_url)['path'] ?? '');
5454

5555
// Ensure path ends with '/' for PWA scope
56-
$scope = rtrim($board_path, '/') . '/';
56+
$scope = rtrim($board_path, '/\\') . '/';
5757
$start_url = $scope;
5858

5959
// Emoji fixer-uppers

0 commit comments

Comments
 (0)