diff --git a/Sources/App/Controllers/StatsController.swift b/Sources/App/Controllers/StatsController.swift index 6baf3e1..856a487 100644 --- a/Sources/App/Controllers/StatsController.swift +++ b/Sources/App/Controllers/StatsController.swift @@ -69,7 +69,7 @@ struct StatsController: RouteCollection { func getStats(matches:[Match]) -> Stats{ let countedMatches = matches.filter { - return shouldCountMatch(match: $0) + return self.shouldCountMatch(match: $0) } let totals = countedMatches.reduce([0,0]) { (totals, match) -> [Int] in @@ -109,7 +109,7 @@ struct StatsController: RouteCollection { match.date.day == lastDayPlayed?.day && match.date.month == lastDayPlayed?.month && match.date.year == lastDayPlayed?.year && - shouldCountMatch(match: match) + self.shouldCountMatch(match: match) if let game = game { // if game == "mw" { @@ -555,11 +555,11 @@ struct StatsController: RouteCollection { // print ( Date().timeIntervalSince(startTime)) let mwStats = self.getStatsWithMostRecentDailyRecord(matches: matches.filter({ (match) -> Bool in - return match.codGame == "mw" && shouldCountMatch(match: match ) + return match.codGame == "mw" && self.shouldCountMatch(match: match ) })) let bocwStats = self.getStatsWithMostRecentDailyRecord(matches: matches.filter({ (match) -> Bool in - return match.codGame == "bocw" && shouldCountMatch(match: match ) + return match.codGame == "bocw" && self.shouldCountMatch(match: match ) })) let mostRecentDailyStats = self.mostRecentDailyStats(matches: matches)