Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Jan 20, 2025
1 parent 0a4b25c commit 5fdb18b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions CountItems/CountManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,12 @@ class CountManager {
if (!results) {
return;
}
this.store.versions += results.versions ? BigInt(results.versions) : BigInt(0);
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
console.log('results.objects', results.objects);
this.store.objects += results.objects ? results.objects : BigInt(0);
// eslint-disable-next-line no-console
console.log('this.store.objects', this.store.objects);
this.store.stalled += results.stalled;
if (results.dataManaged
&& results.dataManaged.locations
Expand Down

0 comments on commit 5fdb18b

Please sign in to comment.