mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix: show only owned assets in places and map (#22585)
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
parent
950f268cb0
commit
a2b25b7a74
6 changed files with 44 additions and 19 deletions
|
|
@ -84,8 +84,8 @@ class AssetService {
|
|||
return 1.0;
|
||||
}
|
||||
|
||||
Future<List<(String, String)>> getPlaces() {
|
||||
return _remoteAssetRepository.getPlaces();
|
||||
Future<List<(String, String)>> getPlaces(String userId) {
|
||||
return _remoteAssetRepository.getPlaces(userId);
|
||||
}
|
||||
|
||||
Future<(int local, int remote)> getAssetCounts() async {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue