From 25680f05dbff2b10754f7ecaf61302ed5f97b650 Mon Sep 17 00:00:00 2001 From: Chathura Dilushanka <90453201+dilushanka@users.noreply.github.com> Date: Mon, 22 Dec 2025 03:11:36 +0530 Subject: [PATCH] Add equals as permitted URI character (#4329) This should resolve the 400 error when deleting payments with base64 encoded IDs containing `=`. --- app/Config/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/App.php b/app/Config/App.php index 0b20bb870..257d1e786 100644 --- a/app/Config/App.php +++ b/app/Config/App.php @@ -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~%.:_\-='; /** * --------------------------------------------------------------------------