fix(aurora): troubleshooting this annoying json issue
This commit is contained in:
parent
293f77c228
commit
de90f6a8b7
1 changed files with 3 additions and 2 deletions
|
@ -135,8 +135,9 @@ def generate_dict(bot: Red, result: dict, guild_id: int) -> dict:
|
||||||
duration = None
|
duration = None
|
||||||
|
|
||||||
if result[14] is not None:
|
if result[14] is not None:
|
||||||
logger.debug('%s\n%s', result[14], result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]'))
|
json_str = f'{result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]')}'
|
||||||
changes = json.loads(result[14].replace('\\"', '"').replace('["{', '[{').replace('}"]', '}]'))
|
logger.debug('%s\n%s', result[14], json_str)
|
||||||
|
changes = json.loads(json_str)
|
||||||
change_obj_list = []
|
change_obj_list = []
|
||||||
for change in changes:
|
for change in changes:
|
||||||
change_obj_list.append(Change.from_dict(bot=bot, data=change))
|
change_obj_list.append(Change.from_dict(bot=bot, data=change))
|
||||||
|
|
Loading…
Reference in a new issue