Skip to content

Commit

Permalink
thumbnail: Don't log 200 responses
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Nov 20, 2019
1 parent ad1df9e commit 1742d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/thumbnail.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def do_GET(self):
# Path is expected to have 3 matched components (third is optional though)
# /thumbnails/FILE-ID/FRAME-NUMBER/ or
# /thumbnails/FILE-ID/FRAME-NUMBER/path/
self.send_response(200)
self.send_response_only(200)
else:
self.send_error(404)
return
Expand Down

0 comments on commit 1742d56

Please sign in to comment.