Skip to content

Commit d559703

Browse files
authored
fix(vertex_ai): handle null predictions (#17211)
1 parent b0e5843 commit d559703

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/firebase_vertexai/firebase_vertexai/lib/src/imagen_content.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ final class ImagenGenerationResponse<T extends ImagenImage> {
104104
/// Factory method to create an [ImagenGenerationResponse] from a JSON object.
105105
factory ImagenGenerationResponse.fromJson(Map<String, dynamic> json) {
106106
final predictions = json['predictions'];
107-
if (predictions.isEmpty) {
107+
if (predictions == null || predictions.isEmpty) {
108108
throw ServerException('Got empty prediction with no reason');
109109
}
110110

0 commit comments

Comments
 (0)