unclecheese/silverstripe-dropzone

Uppercase extension ext.png not found

Opened this issue · 0 comments

Under linux server preview icon is not found if the extension is uppercase
I suggest to fix this by putting this value to lower case

var ext = file.name.split('.').pop();

to
var ext = file.name.split('.').pop().toLowerCase();

2022-05-17_16-40-16