We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a4b25c commit 5fdb18bCopy full SHA for 5fdb18b
CountItems/CountManager.js
@@ -61,8 +61,12 @@ class CountManager {
61
if (!results) {
62
return;
63
}
64
- this.store.versions += results.versions ? BigInt(results.versions) : BigInt(0);
65
- this.store.objects += results.objects ? BigInt(results.objects) : BigInt(0);
+ this.store.versions += results.versions ? results.versions : BigInt(0);
+ // eslint-disable-next-line no-console
66
+ console.log('results.objects', results.objects);
67
+ this.store.objects += results.objects ? results.objects : BigInt(0);
68
69
+ console.log('this.store.objects', this.store.objects);
70
this.store.stalled += results.stalled;
71
if (results.dataManaged
72
&& results.dataManaged.locations
0 commit comments