fix(mobile): recently added -> taken (#17780)

This commit is contained in:
Matthew Momjian
2025-04-23 07:38:25 -04:00
committed by GitHub
parent a774153f67
commit 699fdd0d1b
9 changed files with 23 additions and 21 deletions

View File

@@ -514,9 +514,9 @@ class AssetService {
return _assetRepository.watchAsset(id, fireImmediately: fireImmediately);
}
Future<List<Asset>> getRecentlyAddedAssets() {
Future<List<Asset>> getRecentlyTakenAssets() {
final me = _userService.getMyUser();
return _assetRepository.getRecentlyAddedAssets(me.id);
return _assetRepository.getRecentlyTakenAssets(me.id);
}
Future<List<Asset>> getMotionAssets() {