Skip to content

Commit

Permalink
fix: 馃悵 Corrected Live TV for Jellyfin
Browse files Browse the repository at this point in the history
  • Loading branch information
JamsRepos committed Apr 22, 2024
1 parent a71ada5 commit 1b94a6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wizarr-backend/wizarr_backend/helpers/jellyfin.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ def invite_jellyfin_user(username: str, password: str, code: str, server_api_key

# Set live tv access
if invitation.live_tv is not None and invitation.live_tv == True:
new_policy["EnableLiveTvAccess"] = False
else:
new_policy["EnableLiveTvAccess"] = True
else:
new_policy["EnableLiveTvAccess"] = False

# Get users default policy
old_policy = user_response["Policy"]
Expand Down

0 comments on commit 1b94a6e

Please sign in to comment.