mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 17:23:20 +03:00
fix(mobile): sync all album properties (#8332)
This commit is contained in:
committed by
GitHub
parent
e5d9372708
commit
4ab4a35eba
3
mobile/lib/utils/datetime_comparison.dart
Normal file
3
mobile/lib/utils/datetime_comparison.dart
Normal file
@@ -0,0 +1,3 @@
|
||||
bool isAtSameMomentAs(DateTime? a, DateTime? b) =>
|
||||
(a == null && b == null) ||
|
||||
((a != null && b != null) && a.isAtSameMomentAs(b));
|
||||
Reference in New Issue
Block a user