Open
Description
Pimcore version
11.5.4
Steps to reproduce
configre an external storage like amazon s3
call ElementService > generateSaveKey
calling return self::nextValidFileKeyNumber($type, $parent->getFullPath() . '/' . $key); return the fullpath including the configured prefix host for amazon s3.
Actual Behavior
calling in method:
return self::nextValidFileKeyNumber($type, $parent->getFullPath() . '/' . $key);
returns the fullpath including the configured prefix host for amazon s3.
Expected Behavior
method should use the getRealFullPath() option
return self::nextValidFileKeyNumber($type, $parent->getRealFullPath() . '/' . $key);