mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	chore: update api (#2428)
This commit is contained in:
		| @@ -78,8 +78,8 @@ class AddAssetsResponseDto { | ||||
| 
 | ||||
|       return AddAssetsResponseDto( | ||||
|         successfullyAdded: mapValueOfType<int>(json, r'successfullyAdded')!, | ||||
|         alreadyInAlbum: json[r'alreadyInAlbum'] is List | ||||
|             ? (json[r'alreadyInAlbum'] as List).cast<String>() | ||||
|         alreadyInAlbum: json[r'alreadyInAlbum'] is Iterable | ||||
|             ? (json[r'alreadyInAlbum'] as Iterable).cast<String>().toList(growable: false) | ||||
|             : const [], | ||||
|         album: AlbumResponseDto.fromJson(json[r'album']), | ||||
|       ); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user