Skip to content

Commit

Permalink
Revert part of "Return plex IsAuthenticated false if token is missing"
Browse files Browse the repository at this point in the history
This reverts part of commit 594e954.
  • Loading branch information
harshithmohan committed Jan 3, 2025
1 parent 4b78415 commit 087ab5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Plex/PlexHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public bool IsAuthenticated
{
get
{
if (isAuthenticated == true)
if (isAuthenticated is true)
{
return isAuthenticated.GetValueOrDefault(false);
}
Expand Down

0 comments on commit 087ab5b

Please sign in to comment.