- Fix incorrect function call for novice network

- Fix keybind handler being obsolete
This commit is contained in:
Infi
2025-09-11 01:30:07 +02:00
parent 8c4410e75c
commit efdf69f782
4 changed files with 13 additions and 14 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ public class Processing
internal async Task<MessageResponse[]> ReadMessageList()
{
var tabMessages = await Plugin.CurrentTab!.Messages.GetCopy();
var tabMessages = await Plugin.CurrentTab.Messages.GetCopy();
return tabMessages.TakeLast(Plugin.Config.WebinterfaceMaxLinesToSend).Select(ReadMessageContent).ToArray();
}
@@ -80,7 +80,7 @@ public class Processing
color ??= 0;
var userContent = text.Content ?? "";
var userContent = text.Content ?? string.Empty;
if (Plugin.ChatLogWindow.ScreenshotMode)
{
if (chunk.Link is PlayerPayload playerPayload)