Blue Guy
Blue Guy

Reputation: 125

Bot didn't send DM when voted on Top.gg

I was trying to figure out how to fix the problem. It didn't print anything nor sent a DM.

Code:

async def on_dbl_vote(self, ctx, data):
        print("Received an upvote:")
        await ctx.author.send(f"hey {ctx.author.name}, thanks for voting!")

Upvotes: 3

Views: 609

Answers (1)

user15154281
user15154281

Reputation:

To do this you should be doing user.send while ctx.author.send would just send it to the author of a message which is not specified

Upvotes: 1

Related Questions