Revert "fix(backup): properly support codeblocks (maybe?)"

This reverts commit 168f62d43f.
This commit is contained in:
Seaswimmer 2024-01-31 13:11:17 -05:00
parent 168f62d43f
commit c2aa674bff

View file

@ -75,7 +75,7 @@ class Backup(commands.Cog):
return
def extract_json_from_codeblock(self, text):
match = re.match(r"```(?:\w+)?\n(.*?)(?<!\[)\n```", text, re.DOTALL)
match = re.match(r"```(?:\w+)?\n(.*?)\n```", text, re.DOTALL)
if match:
return match.group(1).strip()
else: