mirror of
https://gitlab.jonasled.de/jonasled/discordbot
synced 2024-11-20 10:13:03 +01:00
in poll response, don't print the link, use a hyperlink
This commit is contained in:
parent
4ffdf92d5c
commit
517a664801
1 changed files with 2 additions and 1 deletions
3
bot.py
3
bot.py
|
@ -285,7 +285,8 @@ async def result(ctx, id):#this function prints the result of a poll
|
|||
embed = discord.Embed(title=poll_message.embeds[0].title, description=description)#prepare the result
|
||||
embed.set_footer(text='enden on ' + datetime.now().strftime("%d.%m.%Y %H:%M:%S"))#set as footer the end time of the poll
|
||||
await poll_message.edit(embed=embed)#edit the origina lmessage and print the results
|
||||
await ctx.message.channel.send("You can find the result on the original poll: " + poll_message.jump_url)#send a message with a link to the original poll in the chat
|
||||
embed2 = discord.Embed(title=" ", description="You can find the result of the poll in the original message [here](" + poll_message.jump_url + ").")
|
||||
await ctx.message.channel.send(embed=embed2)#send a message with a link to the original poll in the chat
|
||||
c.execute("DELETE FROM poll where pollID = ?", [id])#delete the entries from the poll in the database
|
||||
conn.commit()#write the database to disk
|
||||
|
||||
|
|
Loading…
Reference in a new issue