Update sibyl endpoint

This commit is contained in:
blankie 2022-09-19 22:58:09 +07:00
parent 0037a03879
commit ff860629c3
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ async def get_sibyl(entity):
return '- <b>404:</b> Missing sibyl api key'
status = 500
try:
async with session.get(f'https://psychopass.animekaizoku.com/getInfo?token={config["config"]["sibyl_api"]}&userid={entity}') as resp:
async with session.get(f'https://psychopass.kaizoku.cyou/getInfo?token={config["config"]["sibyl_api"]}&userid={entity}') as resp:
status = resp.status
json = await resp.json()
except BaseException as ex: