feat(mobile): use new endpoint (#6108)

This commit is contained in:
Jason Rasmussen 2024-01-01 19:02:30 -05:00 committed by GitHub
parent a7d9e25fb0
commit 9a04014f98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,10 +44,7 @@ class BackupService {
final String deviceId = Store.get(StoreKey.deviceId); final String deviceId = Store.get(StoreKey.deviceId);
try { try {
return await _apiService.assetApi.getUserAssetsByDeviceId(deviceId); return await _apiService.assetApi.getAllUserAssetsByDeviceId(deviceId);
// TODO! Start using this in 1.92.0
// return await _apiService.assetApi.getAllUserAssetsByDeviceId(deviceId);
} catch (e) { } catch (e) {
debugPrint('Error [getDeviceBackupAsset] ${e.toString()}'); debugPrint('Error [getDeviceBackupAsset] ${e.toString()}');
return null; return null;