Add sorting and filters for Seeker stats (#576)

This commit is contained in:
Flaminel
2026-04-25 11:57:38 +03:00
committed by GitHub
parent 41ca55d615
commit 02a07d4fa3
56 changed files with 4284 additions and 333 deletions

View File

@@ -344,6 +344,11 @@ public sealed class CustomFormatScoreSyncer : IHandler
CutoffScore = cutoffScore,
RecordedAt = now,
});
if (cfScore > existing.CurrentScore)
{
existing.LastUpgradedAt = now;
}
}
existing.CurrentScore = cfScore;