How did you get it working without hashes? Can you please provide some information about your solution. Thank you very much!
EDIT: I think I found the corresponding line in the file “destination.php”. At about Line 205 (maybe it is different at your file, search for filePathObscured
) the files will get a unique name. In order to prevent this, you have to change
$fileFlag = uniqid( 'FEU' . md5( $fileName ) );
to
$fileFlag = $fileName;