Skip to content

Commit

Permalink
Make profile graph only plot successes
Browse files Browse the repository at this point in the history
  • Loading branch information
amadanmath committed Oct 23, 2017
1 parent 3748837 commit 68adb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raidar/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def profile_graph(request):
stat = request.POST['stat']

participations = Participation.objects.select_related('encounter').filter(
encounter__era_id=era_id, character__account__user=request.user)
encounter__era_id=era_id, character__account__user=request.user, encounter__success=True)

try:
if area_id.startswith('All'):
Expand Down

0 comments on commit 68adb6d

Please sign in to comment.