events-trigger-query-fix
All checks were successful
Deploy on push / deploy (push) Successful in 25s

This commit is contained in:
2024-02-26 00:06:37 +03:00
parent b02b8276a6
commit 5ca072dfaa
6 changed files with 29 additions and 10 deletions

View File

@@ -34,7 +34,7 @@ class WebhookEndpoint(HTTPEndpoint):
)
if author:
slug = slug + '-' + user_id.split('-').pop()
await create_author(user_id, slug, name)
create_author(user_id, slug, name)
return JSONResponse({'status': 'success'})
except Exception as e: