From 635f92f0c1c145a314b3dc41b1ef6c549620d567 Mon Sep 17 00:00:00 2001 From: MoonlightWave-12 <123384363+MoonlightWave-12@users.noreply.github.com> Date: Mon, 28 Apr 2025 12:02:01 +0200 Subject: [PATCH] fix: Show WebP-images with a file-extension written in lower-case when choosing an image to send. --- lib/utils/file_selector.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/utils/file_selector.dart b/lib/utils/file_selector.dart index 8cc5e7552..9dfc5bdfa 100644 --- a/lib/utils/file_selector.dart +++ b/lib/utils/file_selector.dart @@ -59,8 +59,8 @@ enum FileSelectorType { extensions: ['png', 'PNG'], ), XTypeGroup( - label: 'WEBP', - extensions: ['WebP', 'WEBP'], + label: 'WebP', + extensions: ['webp', 'WebP', 'WEBP'], ), XTypeGroup( label: 'GIF',