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;