From 24845b6b52b9e07892c76f203790027be9450700 Mon Sep 17 00:00:00 2001 From: "random()" Date: Tue, 22 Apr 2025 11:05:22 -0600 Subject: [PATCH] comply with c# naming conventions in console manager --- WindowsFormsApplication2/ConsoleManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WindowsFormsApplication2/ConsoleManager.cs b/WindowsFormsApplication2/ConsoleManager.cs index 302a530..9aca7ce 100644 --- a/WindowsFormsApplication2/ConsoleManager.cs +++ b/WindowsFormsApplication2/ConsoleManager.cs @@ -8,7 +8,7 @@ namespace JellyfinRPC class ConsoleManager { static Form1 MainForm; - public static void writeToConsole(string Line) + public static void WriteToConsole(string Line) { MainForm = new Form1(); MainForm.listBox1.Items.Add(Line);