From 90660a1054e513b65d5c68eef6b5befb060999ac Mon Sep 17 00:00:00 2001 From: Hiroshi Shirosaki Date: Mon, 22 Sep 2025 15:59:29 +0900 Subject: [PATCH] Decode UTF-8 name in html form parameters A plugin uses non-ascii names in form. It is required to decode as UTF-8. --- Slim/Web/HTTP.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Slim/Web/HTTP.pm b/Slim/Web/HTTP.pm index ba53443c6bc..43cca71513a 100644 --- a/Slim/Web/HTTP.pm +++ b/Slim/Web/HTTP.pm @@ -586,6 +586,7 @@ sub processHTTP { # representation of the unescaped # UTF-8 string into a "real" UTF-8 # string with the appropriate magic set. + $name = Slim::Utils::Unicode::utf8decode($name); if ($value ne '*') { $value = Slim::Utils::Unicode::utf8decode($value); }