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
2025-12-22 03:11:36 +05:30
committed by GitHub
parent a11fb099e2
commit 25680f05db

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~%.:_\-=';
/**
* --------------------------------------------------------------------------