fix(backup): properly support codeblocks (maybe?)
This commit is contained in:
parent
5eb762d9fe
commit
168f62d43f
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue