|
With the announcement of "Free up storage" the following passage was added to the docs: As #1669 is not yet implemented, changing the favorite status of a media asset locally after the fact, doesn't reflect the favorite status in Immich. And vice versa. In the code of the "Free up space" feature (#24999) the following code is used |
Replies: 1 comment
|
It seems like there were some changes made to the code since the introduction of the feature. Now immich/mobile/lib/infrastructure/repositories/local_asset.repository.dart Lines 186 to 189 in 6e9a425 Apparently this was introduced with: #26473 While it is great, that both are considered, it would be great if both were also always the same. |
It seems like there were some changes made to the code since the introduction of the feature. Now
_db.localAssetEntity.isFavorite.equals(false) & _db.remoteAssetEntity.isFavorite.equals(false);is used, seemingly indicating that both the local and the remote favorite status is taken into consideration:immich/mobile/lib/infrastructure/repositories/local_asset.repository.dart
Lines 186 to 189 in 6e9a425
Apparently this was introduced with: #26473
While it is great, that both are considered, it would be great if b…