We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8300316 commit 28e59c5Copy full SHA for 28e59c5
bot.py
@@ -211,9 +211,11 @@ async def on_ready(self):
211
datetime.datetime.utcnow()).total_seconds()
212
if after < 0:
213
after = 0
214
+ recipient = self.get_user(recipient_id)
215
+ print(recipient)
216
thread = await self.threads.find(
- recipient=self.get_user(recipient_id))
-
217
+ recipient=recipient)
218
+ print(thread)
219
# TODO: Retrieve messages/replies when bot is down, from history?
220
await thread.close(closer=self.get_user(items['closer_id']),
221
after=after,
0 commit comments