Fix: Make VariantSelectionMenu an instance method to access _mapper

This commit is contained in:
SysAdmin 2025-10-05 23:33:47 +01:00
parent f1d8bfc317
commit a4678c919c

View File

@ -337,7 +337,7 @@ namespace TeleBot.UI
return new InlineKeyboardMarkup(buttons);
}
public static InlineKeyboardMarkup VariantSelectionMenu(Product product, int quantity, string? multiBuyId = null, List<string>? selectedVariants = null)
public InlineKeyboardMarkup VariantSelectionMenu(Product product, int quantity, string? multiBuyId = null, List<string>? selectedVariants = null)
{
var buttons = new List<InlineKeyboardButton[]>();
selectedVariants ??= new List<string>();