diff --git a/mobile/lib/infrastructure/repositories/timeline.repository.dart b/mobile/lib/infrastructure/repositories/timeline.repository.dart index 61428ede92..97c9b6f493 100644 --- a/mobile/lib/infrastructure/repositories/timeline.repository.dart +++ b/mobile/lib/infrastructure/repositories/timeline.repository.dart @@ -595,7 +595,7 @@ extension on String { GroupAssetsBy.none => throw ArgumentError("GroupAssetsBy.none is not supported for date formatting"), }; try { - return DateFormat(format).parse(this); + return DateFormat(format, 'en').parse(this); } catch (e) { throw FormatException("Invalid date format: $this", e); }