Skip to content

Commit

Permalink
fix: correct filters
Browse files Browse the repository at this point in the history
  • Loading branch information
elementh committed May 22, 2023
1 parent a9e50e1 commit decf1e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ public override async Task<Unit> Handle(ThanksInlineAction request, Cancellation
Description = gratitude[0],
ThumbUrl = Basic
},
new InlineQueryResultArticle(nameof(Mocking), "Mocking gratitude", new InputTextMessageContent(gratitude[1]))
new InlineQueryResultArticle(nameof(Mocking), "Mocking gratitude", new InputTextMessageContent(gratitude[2]))
{
Description = gratitude[2],
ThumbUrl = Mocking

},
new InlineQueryResultArticle(nameof(Shouting), "Shouting gratitude", new InputTextMessageContent(gratitude[2]))
new InlineQueryResultArticle(nameof(Shouting), "Shouting gratitude", new InputTextMessageContent(gratitude[3]))
{
Description = gratitude[3],
ThumbUrl = Shouting

},
new InlineQueryResultArticle(nameof(Leet), "Leet gratitude", new InputTextMessageContent(gratitude[3]))
new InlineQueryResultArticle(nameof(Leet), "Leet gratitude", new InputTextMessageContent(gratitude[1]))
{
Description = gratitude[1],
ThumbUrl = Leet
Expand Down

0 comments on commit decf1e7

Please sign in to comment.