Skip to content

Commit

Permalink
dont bother parsing or storing online replaydata in generic calls
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Nov 23, 2018
1 parent 731289c commit d4eda50
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/DownloadManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1451,7 +1451,8 @@ DownloadManager::RequestChartLeaderBoard(string chartkey)
FOREACH_ENUM(Skillset, ss)
tmp.SSRs[ss] = static_cast<float>(
ssrs.value(SkillsetToString(ss).c_str(), 0.0));
try {

/*try {
auto replay = score["replay"];
if (replay.size() > 1)
LOG->Trace(tmp.modifiers.c_str());
Expand All @@ -1460,7 +1461,7 @@ DownloadManager::RequestChartLeaderBoard(string chartkey)
pair[0].get<float>(), pair[1].get<float>()));
} catch (exception e) {
// replaydata failed
}
} */

// eo still has some old profiles with various edge issues that
// unfortunately need to be handled here screen out old 11111
Expand Down

0 comments on commit d4eda50

Please sign in to comment.