From 86e8effd8e1eb108e2e5432fe9771b68d6ea8763 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 4 Mar 2025 06:54:54 -0600 Subject: [PATCH] fix(mobile): incorrect memories with timezone (#16562) --- mobile/lib/services/memory.service.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/lib/services/memory.service.dart b/mobile/lib/services/memory.service.dart index 3afb6d78d39..6ae8e1d0bbc 100644 --- a/mobile/lib/services/memory.service.dart +++ b/mobile/lib/services/memory.service.dart @@ -26,7 +26,7 @@ class MemoryService { try { final now = DateTime.now(); final data = await _apiService.memoriesApi.searchMemories( - for_: now, + for_: DateTime.utc(now.year, now.month, now.day, 0, 0, 0), ); if (data == null) {