Add equals as permitted URI character (#4329)

This should resolve the 400 error when deleting payments with base64 encoded IDs containing `=`.
This commit is contained in:
Chathura Dilushanka authored and GitHub committed 2025-12-21 22:41:36 +01:00
1 parent a11fb099e2
commit 25680f05db
1 file changed
+1 -1
+1 -1
View File
@@ -117,7 +117,7 @@ class App extends BaseConfig
| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
|
*/
public string $permittedURIChars = 'a-z 0-9~%.:_\-';
public string $permittedURIChars = 'a-z 0-9~%.:_\-=';
/**
* --------------------------------------------------------------------------