You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's still possible to apply my simple (updated) PR #1513, possibly using composer-patches or just using your own patch. Given that src was handled correctly, this just seems to be an unfixed encoding bug in this place.
https://github.com/FluidTYPO3/vhs/blob/development/Classes/Traits/SourceSetViewHelperTrait.php
images with special characters gets double encoded
src:
/fileadmin/processed/1/c/csm_X90_Zug_%C3%B6ffentlicher_Verkehr_train-0b8e8c69_bb8b2bd812.jpg
generated srcset:
/fileadmin/processed/1/c/csm_X90_Zug_%25C3%25B6ffentlicher_Verkehr_train-0b8e8c69_bb8b2bd812.jpg
the % character is encoded to %25
can be solved via following statement in line 60
$srcsetVariantSrc = str_replace('%25', '%', $srcsetVariantSrc);
The text was updated successfully, but these errors were encountered: