From 49b29d72a7eeb721898fa192d782964b83792f01 Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 16 Jan 2021 11:34:09 -0600 Subject: [PATCH] rename snapshot endpoint to thumbnail --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index f58ead7da..5ed679c4b 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -88,7 +88,7 @@ def event(id): except DoesNotExist: return "Event not found", 404 -@bp.route('/events//snapshot.jpg') +@bp.route('/events//thumbnail.jpg') def event_snapshot(id): format = request.args.get('format', 'ios') thumbnail_bytes = None