Skip to content

Commit

Permalink
Skip writing outdated .env keys
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Mar 17, 2024
1 parent a8760e4 commit f307cda
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plextraktsync/config/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ class Config(ChangeNotifier, ConfigMergeMixin, dict):
# This is stored/used only if user uses a shared PMS.
# Needed to fetch its watchlist from Plex online servers.
"PLEX_ACCOUNT_TOKEN": True,
# Old keys, Leave comment why deprecated
"PLEX_FALLBACKURL": "Legacy, used before 0.18.21",
"PLEX_BASEURL": "Unused after 0.24.0, moved to servers.yml",
"PLEX_LOCALURL": "Unused after 0.24.0, moved to servers.yml",
"PLEX_TOKEN": "Unused after 0.24.0, moved to servers.yml",
# Old keys, Do not write to .env anymore
"PLEX_FALLBACKURL": False,
"PLEX_BASEURL": False,
"PLEX_LOCALURL": False,
"PLEX_TOKEN": False,
}

initialized = False
Expand Down

0 comments on commit f307cda

Please sign in to comment.