use rawurlencode

This commit is contained in:
2023-09-13 20:08:53 +10:00
parent 8ed07e539f
commit 2271aae557

View File

@@ -175,7 +175,7 @@ class Media extends Model
// Loop through the array and encode each value
foreach ($decodedValue as &$item) {
if (is_string($item)) {
$item = customUrlEncode($item);
$item = rawurlencode($item);
}
}
}