We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd03ca9 commit 87a5187Copy full SHA for 87a5187
src/Services/InfoProviderSystem/Providers/OEMSecretsProvider.php
@@ -1462,7 +1462,10 @@ private function unwrapURL(?string $url): ?string
1462
1463
//The real URL is stored in the 'event_link' query parameter
1464
if (isset($queryParams['event_link']) && trim($queryParams['event_link']) !== '') {
1465
- return $queryParams['event_link'];
+ $url = $queryParams['event_link'];
1466
+
1467
+ //Replace any spaces in the URL by %20 to avoid invalid URLs
1468
+ return str_replace(' ', '%20', $url);
1469
}
1470
1471
0 commit comments