bot: Await get user
All checks were successful
Build Docker / Build Docker (push) Successful in 16s

This commit is contained in:
Nathan Woodburn 2023-10-01 23:20:51 +11:00
parent ad92caca30
commit 6417e326a5
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

4
bot.py
View File

@ -359,7 +359,7 @@ async def checkForSSLExpiry():
cert_obj = x509.load_pem_x509_certificate(cert.encode("utf-8"), default_backend())
expiry_date = cert_obj.not_valid_after
if expiry_date < datetime.datetime.now() + datetime.timedelta(days=7):
user = client.fetch_user(int(userid))
user = await client.get_user(int(userid))
if user:
await user.send(f"SSL certificate for {domain} expires soon")
print(f"SSL certificate for {domain} expires soon", flush=True)
@ -367,7 +367,7 @@ async def checkForSSLExpiry():
print(f"User {userid} not found", flush=True)
else:
# Test by sending a message
user = client.fetch_user(int(userid))
user = await client.get_user(int(userid))
if user:
await user.send(f"SSL certificate for {domain} is valid")
print(f"SSL certificate for {domain} is valid", flush=True)