Skip to content

Commit

Permalink
Fix CONTAINERIZED environment variable default type
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiRigal committed Jul 13, 2023
1 parent a5da311 commit 581ed76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plex_auto_languages/utils/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def is_docker():
return (
os.path.exists("/.dockerenv") or
os.path.isfile(path) and any("docker" in line for line in open(path, "r", encoding="utf-8")) or
os.getenv('CONTAINERIZED', False).lower() == 'true'
os.getenv("CONTAINERIZED", "False").lower() == "true"
)


Expand Down

0 comments on commit 581ed76

Please sign in to comment.