From a18d5ab0fdd2f3bec21f7626b4ba97c6c32ebf34 Mon Sep 17 00:00:00 2001 From: otsmr Date: Sun, 22 Jun 2025 21:11:39 +0200 Subject: [PATCH] fix #219 --- .../camera/image_editor/layers/filters/location_filter.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/views/camera/image_editor/layers/filters/location_filter.dart b/lib/src/views/camera/image_editor/layers/filters/location_filter.dart index b295262..282b539 100644 --- a/lib/src/views/camera/image_editor/layers/filters/location_filter.dart +++ b/lib/src/views/camera/image_editor/layers/filters/location_filter.dart @@ -50,7 +50,7 @@ class _LocationFilterState extends State { // Check if the item matches the normalized city if (item.imageSrc.endsWith('$normalizedCity.png')) { if (item.imageSrc.startsWith("/api/")) { - _imageUrl = "https://twonly.eu/$item"; + _imageUrl = "https://twonly.eu/${item.imageSrc}"; if (mounted) setState(() {}); } return; @@ -64,7 +64,7 @@ class _LocationFilterState extends State { if (item.imageSrc.contains('/countries/') && item.imageSrc.contains(normalizedCountry)) { if (item.imageSrc.startsWith("/api/")) { - _imageUrl = "https://twonly.eu/$item"; + _imageUrl = "https://twonly.eu/${item.imageSrc}"; if (mounted) setState(() {}); } break;