From 901089f81dda0b379913e46afbea4e3bf3d8cb0f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 21 Jul 2022 11:47:17 +0100 Subject: [PATCH] Wrong variable name --- content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.py b/content.py index c6360621c..9ef638d44 100644 --- a/content.py +++ b/content.py @@ -1484,7 +1484,7 @@ def save_media_in_form_post(media_bytes, debug: bool, return None, None elif detected_extension == 'csv': csv_str = media_bytes[start_pos:] - csv_str = svg_str.decode() + csv_str = csv_str.decode() if not _valid_follows_csv(csv_str): return None, None