Hi,
if I download a file like "fooö.zip", the filename is after download "foo%C3B6.zip".
This is because of this line in the AttachmentService:
// extract filename
$file = substr(strrchr($attachment->content, '/'), 1);
I am not sure why the filename is extracted from the url and not from the Attachment object.
If the filename would be like:
$file = $attachment->filename;
... than the file would be correct downloaded. Can somebody help me here?