From 43c2ff6ad99e323dccdd45fa7ba9351bd973e29e Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sun, 28 Jun 2026 21:03:05 +0900 Subject: [PATCH] fix(telegram): route deploy complete to system chat --- TaxBaik.Web/Program.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/TaxBaik.Web/Program.cs b/TaxBaik.Web/Program.cs index 36e7255..2f94bcf 100644 --- a/TaxBaik.Web/Program.cs +++ b/TaxBaik.Web/Program.cs @@ -376,9 +376,8 @@ try using (var scope = app.Services.CreateScope()) { var telegramService = scope.ServiceProvider.GetRequiredService(); - await telegramService.SendInfoAsync( - "✅ 배포 완료", - $"환경: {app.Environment.EnvironmentName}\n상태: 정상 운영 중"); + await telegramService.SendSystemNotificationAsync( + $"✅ 배포 완료\n\n환경: {app.Environment.EnvironmentName}\n상태: 정상 운영 중"); } } catch (Exception ex)