From 5ced9cfeb9123575f65dcb5213f7f4e04323de9d Mon Sep 17 00:00:00 2001 From: kookxiang Date: Sun, 19 Jun 2022 21:15:17 +0800 Subject: [PATCH] fix typo --- Jellyfin.Plugin.Bangumi/OAuth/OAuthStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jellyfin.Plugin.Bangumi/OAuth/OAuthStore.cs b/Jellyfin.Plugin.Bangumi/OAuth/OAuthStore.cs index f3d89ea..bcbb77a 100644 --- a/Jellyfin.Plugin.Bangumi/OAuth/OAuthStore.cs +++ b/Jellyfin.Plugin.Bangumi/OAuth/OAuthStore.cs @@ -52,7 +52,7 @@ public bool Contains(Guid guid) { try { - return _users.First(user => user.Value.Expired).Value; + return _users.First(user => !user.Value.Expired).Value; } catch (Exception) {