From f355ba48e216becaa605aafb0aa18822d6011d06 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Sun, 25 May 2025 22:25:36 -0400 Subject: [PATCH] Fix condition for Google Maps integration check in IntegrationView --- backend/server/integrations/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/server/integrations/views.py b/backend/server/integrations/views.py index f308ddd..68ced57 100644 --- a/backend/server/integrations/views.py +++ b/backend/server/integrations/views.py @@ -16,7 +16,7 @@ class IntegrationView(viewsets.ViewSet): RESTful GET method for listing all integrations. """ immich_integrations = ImmichIntegration.objects.filter(user=request.user) - google_map_integration = settings.GOOGLE_MAPS_API_KEY is not '' + google_map_integration = settings.GOOGLE_MAPS_API_KEY != '' return Response( {