Skip to content

Commit cf727c5

Browse files
committed
Fix base conversion characters
1 parent b8b52f4 commit cf727c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Dispatch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ public function handleRequest(Request $request): Response
238238
//Remove the hash from the URL
239239
$compareHashWithBits = array_shift($pathParts);
240240
[$compareHash, $bits] = explode('-', $compareHashWithBits . '-', 2);
241-
$this->_bits = base_convert(trim($bits, ';'), 36, 10);
241+
$this->_bits = base_convert(trim($bits, ';-/'), 36, 10);
242242

243243
$requestPath = Path::custom('/', $pathParts);
244244
$fullPath = $manager->getFilePath($requestPath);

0 commit comments

Comments
 (0)