mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 18:47:09 -04:00 
			
		
		
		
	* fix(mobile): incorrect filename is retrieve during upload * use the same convention to get local id * revert previous change * pr feedback
		
			
				
	
	
		
			11 lines
		
	
	
		
			307 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			307 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:immich_mobile/entities/asset.entity.dart';
 | |
| 
 | |
| abstract interface class IAssetMediaRepository {
 | |
|   Future<List<String>> deleteAll(List<String> ids);
 | |
| 
 | |
|   Future<Asset?> get(String id);
 | |
| 
 | |
|   /// Obtaining the correct original filename of the asset
 | |
|   Future<String?> getOriginalFilename(String id);
 | |
| }
 |