fix(mobile): sync all album properties (#8332)

This commit is contained in:
Fynn Petersen-Frey
2024-04-02 07:22:15 +02:00
committed by GitHub
parent e5d9372708
commit 4ab4a35eba
3 changed files with 24 additions and 17 deletions

View File

@@ -0,0 +1,3 @@
bool isAtSameMomentAs(DateTime? a, DateTime? b) =>
(a == null && b == null) ||
((a != null && b != null) && a.isAtSameMomentAs(b));