aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/views/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views/feed.py b/pyaggr3g470r/views/feed.py
index 1a3ad938..fb3ea4c7 100644
--- a/pyaggr3g470r/views/feed.py
+++ b/pyaggr3g470r/views/feed.py
@@ -208,7 +208,7 @@ def icon(feed_id):
if request.headers.get('if-none-match') == etag:
return Response(status=304, headers=headers)
if '\n' in icon:
- content_type, icon = icon.split()
+ content_type, *_, icon = icon.split()
headers['content-type'] = content_type
else:
headers['content-type'] = 'application/image'
bgstack15