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

This commit is contained in:
Seaswimmer 2024-01-31 13:10:31 -05:00
parent 5eb762d9fe
commit 168f62d43f
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -75,7 +75,7 @@ class Backup(commands.Cog):
return return
def extract_json_from_codeblock(self, text): 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: if match:
return match.group(1).strip() return match.group(1).strip()
else: else: