Skip to content

Commit 2f22696

Browse files
authored
review 2
1 parent 4847a34 commit 2f22696

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FirebaseFunctions/Backend/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ exports.genStreamWeatherError = functionsV2.https.onCall(
185185
async (request, response) => {
186186
if (request.acceptsStreaming) {
187187
for await (const chunk of generateForecast(request.data)) {
188-
// Remove the location field, since the SDK cannot decode the message if it's there.
188+
// Remove the location field, since the SDK cannot decode the message
189+
// if it's there.
189190
delete chunk.location;
190191
response.sendChunk(chunk);
191192
}

0 commit comments

Comments
 (0)