From d6e7b6aad7e5e6445a2d4d9573230eb106c526b2 Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Sun, 11 Feb 2024 13:54:36 -0700 Subject: [PATCH] The user pin isn't actually required --- Jellyfin.Plugin.Tvdb/TvdbClientManager.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs b/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs index 1a87780..4a367b6 100644 --- a/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs +++ b/Jellyfin.Plugin.Tvdb/TvdbClientManager.cs @@ -50,10 +50,6 @@ public TvdbClientManager(IApplicationHost applicationHost) private async Task LoginAsync() { var loginClient = _serviceProvider.GetRequiredService(); - if (string.IsNullOrEmpty(UserPin)) - { - throw new InvalidOperationException("Subscriber PIN not set"); - } // Ensure we have a recent token. if (IsTokenInvalid())