Skip to content

Commit

Permalink
fix(client-electron): calculate acquired daemons from resolved sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
marcincichocki committed Oct 10, 2022
1 parent 532bf09 commit c5266e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/electron/main/store/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function getStatsFromHistoryEntry(
}

daemonsCount += daemonsSize;
daemonsSolvedCount += result.sequence.parts.length;
daemonsSolvedCount += result.resolvedSequence.parts.length;
} else {
countErrorSession += 1;
countError += 1;
Expand Down

0 comments on commit c5266e2

Please sign in to comment.