fix html code
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
mitsuha_s 2022-07-08 20:16:33 +00:00
parent 4f25c2dd3f
commit d25ca99da1
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class CommandProcessor:
feed_list = ''
for index, feed in enumerate(feeds, start=1):
feed_list += '* ' + str(index) + ': ' + f"<a href={feed['url']}>{feed['title']}</a" + '\n'
feed_list += '* ' + str(index) + ': ' + f'''<a href="{feed['url']}">{feed['title']}</a''' + '\n'
self.bot.reply_to(message, 'Your feeds:\n' + feed_list)