We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4847a34 commit 2f22696Copy full SHA for 2f22696
FirebaseFunctions/Backend/index.js
@@ -185,7 +185,8 @@ exports.genStreamWeatherError = functionsV2.https.onCall(
185
async (request, response) => {
186
if (request.acceptsStreaming) {
187
for await (const chunk of generateForecast(request.data)) {
188
- // Remove the location field, since the SDK cannot decode the message if it's there.
+ // Remove the location field, since the SDK cannot decode the message
189
+ // if it's there.
190
delete chunk.location;
191
response.sendChunk(chunk);
192
}
0 commit comments