From ccfefa578d38f90efb9323fdb9e00221ba63c9f6 Mon Sep 17 00:00:00 2001 From: Rikitav Date: Tue, 12 Aug 2025 01:02:40 +0400 Subject: [PATCH] Changed summaries for InlineQueryHandler to match new restrict --- Telegrator/Handlers/InlineQueryHandler.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Telegrator/Handlers/InlineQueryHandler.cs b/Telegrator/Handlers/InlineQueryHandler.cs index 7a12d7b..1e65e56 100644 --- a/Telegrator/Handlers/InlineQueryHandler.cs +++ b/Telegrator/Handlers/InlineQueryHandler.cs @@ -9,6 +9,7 @@ namespace Telegrator.Handlers { /// /// Attribute that marks a handler to process inline queries. + /// IMPORTANT! You can have only ONE instance of this handler. /// public class InlineQueryHandlerAttribute(int importance = 0) : UpdateHandlerAttribute(UpdateType.InlineQuery, importance) { @@ -18,6 +19,7 @@ namespace Telegrator.Handlers /// /// Abstract base class for handlers that process inline queries. + /// IMPORTANT! You can have only ONE instance of this handler. /// public abstract class InlineQueryHandler() : AbstractUpdateHandler(UpdateType.InlineQuery) {