|
@@ -45,7 +45,13 @@ namespace MafiaTelegramBot.Controllers
|
|
|
}
|
|
|
catch (NullReferenceException)
|
|
|
{
|
|
|
- Console.WriteLine("Command not found");
|
|
|
+ var command = update.Type switch
|
|
|
+ {
|
|
|
+ UpdateType.Message => update.Message.Text,
|
|
|
+ UpdateType.CallbackQuery => update.CallbackQuery.Data,
|
|
|
+ _ => "unknown"
|
|
|
+ };
|
|
|
+ Console.WriteLine($"Command \"{command}\" not found");
|
|
|
}
|
|
|
catch (Exception exception)
|
|
|
{
|