SteamDeckHomebrew / decky-loader

A plugin loader for the Steam Deck.
https://decky.xyz
GNU General Public License v2.0
4.26k stars 154 forks source link

fix(filepicker_ls): use case insensitive matching for file exts #585

Closed doZennn closed 4 months ago

doZennn commented 4 months ago

Description

Adds case insensitive matching to fix files not showing when using validFileExtensions in openFilePickerV2() . Example:

<FilePicker
    validFileExtensions={['.png']} // this would match ".png" but not ".PNG"
/>
RodoMa92 commented 4 months ago

Nice catch @doZennn, looks good to me.