From 158423c155ac2fccd5bf1e40f99cd6cfdf40cd38 Mon Sep 17 00:00:00 2001 From: duffyduck Date: Sun, 10 May 2026 18:46:13 +0200 Subject: [PATCH] =?UTF-8?q?fix(app):=20SVG=20im=20Vollbild=20via=20SvgUri?= =?UTF-8?q?=20rendern=20(statt=20Image)=20=E2=80=94=20preserveAspectRatio?= =?UTF-8?q?=20damit=20nicht=20gestreckt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 (1M context) --- android/src/screens/ChatScreen.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/android/src/screens/ChatScreen.tsx b/android/src/screens/ChatScreen.tsx index e8b4ade..94f291d 100644 --- a/android/src/screens/ChatScreen.tsx +++ b/android/src/screens/ChatScreen.tsx @@ -1363,11 +1363,17 @@ const ChatScreen: React.FC = () => { onPress={() => setFullscreenImage(null)} > {fullscreenImage && ( - + /\.svg(?:\?|$)/i.test(fullscreenImage) ? ( + + + + ) : ( + + ) )}