begin defining the entire fucking jellyfin API response for login

This commit is contained in:
random() 2025-05-21 14:43:45 -06:00
parent c9e2e7fb5f
commit 4c880c3e9f
8 changed files with 125 additions and 8 deletions

View file

@ -38,7 +38,7 @@ namespace JellyfinRPC
private static System.Timers.Timer consoleTimer;
private void Form1_Load(object sender, EventArgs e)
private async void Form1_Load(object sender, EventArgs e)
{
minimiseToTrayToolStripMenuItem.Checked = bool.Parse(ConfigManager.GetEntry("MinimiseToTray", "False"));
closeToTrayToolStripMenuItem.Checked = bool.Parse(ConfigManager.GetEntry("CloseToTray", "False"));
@ -50,7 +50,7 @@ namespace JellyfinRPC
ConfigManager.GetEntry("JellyfinToken", "");
ConfigManager.GetEntry("DeviceID", $"{JellyfinAPI.DeviceID()}");
SetTimer();
JellyfinAPI.Jellyfin();
await JellyfinAPI.Jellyfin();