From 9f86db7f165c71f3cfb4f9bd78e57b626a1a5056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Gon=C3=A7alves?= Date: Fri, 12 Jul 2024 11:40:33 -0300 Subject: [PATCH] Add unquote in all executable formats --- bigbashview/usr/lib/bbv/server/views.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bigbashview/usr/lib/bbv/server/views.py b/bigbashview/usr/lib/bbv/server/views.py index 0506e33..4468cc1 100644 --- a/bigbashview/usr/lib/bbv/server/views.py +++ b/bigbashview/usr/lib/bbv/server/views.py @@ -272,6 +272,7 @@ def bbv_compat_mode(self, options, content, query): web.header('Content-Type', 'text/html; charset=UTF-8') execute_content = " ".join((content, unquote(self.original_qs))) if content.endswith(execute_ext): + execute_content = " ".join((content, unquote(self.original_qs))) return execute_handler().called(options, execute_content, query) if content.endswith(content_ext): return content_handler().called(options, content, query)