webp-express icon indicating copy to clipboard operation
webp-express copied to clipboard

Problem with special characters within BulkConvert (Finding the same unconverted files again and again)

Open brausecode opened this issue 3 years ago • 0 comments

Hi, the BulkConvert Class finds the same files again and again, as in line 137 $webpExists = @file_exists($destination); will not recognize special (german) characters like "ßäöü". But the files have already been converted.

A change to $webpExists = @file_exists(utf8_encode($destination)) || @file_exists($destination); will fix this issue. Please check, whether this could be a change for a comming update..

brausecode avatar Jun 30 '21 08:06 brausecode