Skip to content

Commit

Permalink
Merge pull request #151 from mwardrop/main
Browse files Browse the repository at this point in the history
Fix for Wealth Over Time chart
  • Loading branch information
leMicin authored Dec 9, 2023
2 parents 61d1cd8 + 9062e90 commit 7838204
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Sidekick.Apis.Poe/Stash/StashService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public StashService(

return result;
}
catch (Exception)
catch (Exception ex)
{
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
.Select(x => new DataPoint()
{
DateString = x.Key,
Value = snapshot.OrderByDescending(y => y.Total).First().Total,
Value = x.Max(row => row.Total)
})
.ToList(),
})
Expand Down

0 comments on commit 7838204

Please sign in to comment.