diff --git a/sukuinote/plugins/einfo.py b/sukuinote/plugins/einfo.py index 63386c8..f0d3ff9 100644 --- a/sukuinote/plugins/einfo.py +++ b/sukuinote/plugins/einfo.py @@ -177,7 +177,7 @@ async def get_spam_protection(entity): status = 500 try: async with session.get(f'https://api.intellivoid.net/spamprotection/v1/lookup?query={entity}') as resp: - status = resp.staus + status = resp.status json = await resp.json() except BaseException as ex: return f'- {status}: {html.escape(type(ex).__name__)}: {html.escape(str(ex))}'