Browse Source

fix fastpinger

Élie Bouttier 7 years ago
parent
commit
f304c31b40
1 changed files with 1 additions and 1 deletions
  1. 1 1
      services/views.py

+ 1 - 1
services/views.py

@@ -22,5 +22,5 @@ def fastpinger(request):
         return HttpResponseForbidden('Invalid key.')
     if 'fastpinger' not in request.FILES:
         return HttpResponse(status=400)  # Bad Request
-    stats = fastpinger_update(request.FILES['fastping'])
+    stats = fastpinger_update(request.FILES['fastpinger'])
     return HttpResponse(stats + '\n')