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 dbb7f06 commit 6589bd6Copy full SHA for 6589bd6
packages/firestore/src/platform/node/grpc_connection.ts
@@ -177,7 +177,7 @@ export class GrpcConnection implements Connection {
177
logDebug(LOG_TAG, `RPC ${rpcName} received result:`, response);
178
results.push(response);
179
if (
180
- typeof expectedResponseCount !== 'undefined' &&
+ expectedResponseCount !== undefined &&
181
results.length === expectedResponseCount
182
) {
183
callbackFired = true;
0 commit comments