From 6966ecc69ce810b07e1e874ed30b3c200410c21b Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Sun, 11 Feb 2024 13:55:21 -0700 Subject: [PATCH] Don't require user pin (#108) --- 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())