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 daba14b commit 3954ea2Copy full SHA for 3954ea2
packages/firestore/src/remote/watch_change.ts
@@ -242,9 +242,10 @@ class TargetState {
242
this.pendingResponses -= 1;
243
hardAssert(
244
this.pendingResponses >= 0,
245
- 'Unexpected state, `pendingResponses` is less than 0. This ' +
246
- 'indicates that the SDK received more target acks from the server than ' +
247
- 'expected. The SDK should not continue to operate.'
+ '`pendingResponses` is less than 0. Actual value: ' +
+ this.pendingResponses +
+ '. This indicates that the SDK received more target acks from the ' +
248
+ 'server than expected. The SDK should not continue to operate.'
249
);
250
}
251
0 commit comments