mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
Include trashed items in getMediaChanges
Process trashed items delta during incremental sync
This commit is contained in:
parent
5ddb6cd2e1
commit
55fe480cc1
9 changed files with 110 additions and 36 deletions
|
|
@ -24,6 +24,7 @@ class PlatformAsset {
|
|||
final int durationInSeconds;
|
||||
final int orientation;
|
||||
final bool isFavorite;
|
||||
final bool isTrashed;
|
||||
final int? size;
|
||||
|
||||
const PlatformAsset({
|
||||
|
|
@ -37,6 +38,7 @@ class PlatformAsset {
|
|||
this.durationInSeconds = 0,
|
||||
this.orientation = 0,
|
||||
this.isFavorite = false,
|
||||
this.isTrashed = false,
|
||||
this.size,
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue