Skip to content

Commit 92fde99

Browse files
authored
Fix bug in genStream function impl. (#14379)
1 parent 4b99774 commit 92fde99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

FirebaseFunctions/Backend/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ exports.genStream = functionsV2.https.onCall(
139139
response.sendChunk({ chunk });
140140
}
141141
}
142-
return data.join(" ");
142+
return streamData.join(" ");
143143
}
144144
);
145145

0 commit comments

Comments
 (0)