Skip to content

Commit

Permalink
Add unquote in all executable formats
Browse files Browse the repository at this point in the history
  • Loading branch information
bigbruno committed Jul 12, 2024
1 parent 3f9fbe0 commit 9f86db7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bigbashview/usr/lib/bbv/server/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 9f86db7

Please sign in to comment.