Update webhook url

This commit is contained in:
2025-07-05 11:33:06 +07:00
parent 38959db65f
commit dcf0778a17
2 changed files with 1 additions and 2 deletions

View File

@@ -25,7 +25,7 @@
"BaseUrl": "http://localhost:4111" "BaseUrl": "http://localhost:4111"
}, },
"N8n": { "N8n": {
"WebhookUrl": "https://n8n.kaigen.managing.live/webhook/fa9308b6-983b-42ec-b085-71599d655951" "WebhookUrl": "https://n8n.kai.managing.live/webhook/fa9308b6-983b-42ec-b085-71599d655951"
}, },
"Sentry": { "Sentry": {
"Dsn": "https://698e00d7cb404b049aff3881e5a47f6b@bugcenter.apps.managing.live/1", "Dsn": "https://698e00d7cb404b049aff3881e5a47f6b@bugcenter.apps.managing.live/1",

View File

@@ -1354,7 +1354,6 @@ public class TradingBot : Bot, ITradingBot
if (!Config.IsForBacktest) if (!Config.IsForBacktest)
{ {
var user = Account.User; var user = Account.User;
// Add bot name at the top of every message
var messageWithBotName = $"🤖 **{user.AgentName} - {Name}**\n{message}"; var messageWithBotName = $"🤖 **{user.AgentName} - {Name}**\n{message}";
await MessengerService.SendTradeMessage(messageWithBotName, isBadBehavior, user); await MessengerService.SendTradeMessage(messageWithBotName, isBadBehavior, user);
} }