LycheeOrg/Lychee-front

Odd Upload Window Filtering on Movies in Safari

tomierna opened this issue · 1 comments

I just recently installed Lychee-Laravel for a test.

In uploading some files, I ran across some .mp4 and .mov files which are non-select-able in the file picker in Safari, but not in Chrome.

In the screenshots, I show the same content to upload in both browsers.

From Safari:
Screen Shot 2020-01-10 at 12 28 51 PM

From Chrome:
Screen Shot 2020-01-10 at 12 28 37 PM

This seems to be because Safari treats .mov as different than .mp4 sometimes.

If I go to the form in Safari's developer mode and change the following:
multiple accept="image/*,video/*,.mov"
to
multiple accept="image/*,video/*,.mov,.mp4

...then I can select the files in Safari.