Iker Narvaez

load recent results only they have if points calculated

......@@ -33,7 +33,7 @@ class ApplicationController < HeimdallEngine::ApplicationController
def check_results
return [] unless current_user
current_user.bets.joins(:match).order('matches.date desc')
.where.not(result: nil)
.where.not(points: nil)
.limit(5)
end
end
......