Browse Source

rename snapshot endpoint to thumbnail

Blake Blackshear 4 years ago
parent
commit
eb0a5e1c55
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frigate/http.py

+ 1 - 1
frigate/http.py

@@ -88,7 +88,7 @@ def event(id):
     except DoesNotExist:
         return "Event not found", 404
 
-@bp.route('/events/<id>/snapshot.jpg')
+@bp.route('/events/<id>/thumbnail.jpg')
 def event_snapshot(id):
     format = request.args.get('format', 'ios')
     thumbnail_bytes = None