From 94af9af1731ab38e37039a44bfebb2a29fbf2cd7 Mon Sep 17 00:00:00 2001 From: barelyprofessional <150058423+barelyprofessional@users.noreply.github.com> Date: Thu, 6 Feb 2025 14:47:03 +0800 Subject: [PATCH] Fix missing .Value --- KfChatDotNetBot/Services/BotServices.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KfChatDotNetBot/Services/BotServices.cs b/KfChatDotNetBot/Services/BotServices.cs index 6e33a97..7ff31df 100644 --- a/KfChatDotNetBot/Services/BotServices.cs +++ b/KfChatDotNetBot/Services/BotServices.cs @@ -566,7 +566,7 @@ public class BotServices if (isLive) { _chatBot.SendChatMessage($"{settings[BuiltIn.Keys.TwitchBossmanJackUsername].Value} just went live on Twitch! https://www.twitch.tv/{settings[BuiltIn.Keys.TwitchBossmanJackUsername].Value}\r\n" + - settings[BuiltIn.Keys.RestreamUrl]); + settings[BuiltIn.Keys.RestreamUrl].Value); IsBmjLive = true; return; }