Skip to content

Commit

Permalink
whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
meeb committed Dec 11, 2024
1 parent 2c12bf5 commit 6c12244
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tubesync/tubesync/local_settings.py.container
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ else:
BASICAUTH_USERS = {}


SOURCE_DOWNLOAD_DIRECTORY_PREFIX = os.getenv('TUBESYNC_DIRECTORY_PREFIX', 'True').strip().lower()
SOURCE_DOWNLOAD_DIRECTORY_PREFIX_STR = os.getenv('TUBESYNC_DIRECTORY_PREFIX', 'True').strip().lower()
SOURCE_DOWNLOAD_DIRECTORY_PREFIX = True if SOURCE_DOWNLOAD_DIRECTORY_PREFIX_STR == 'true' else False


VIDEO_HEIGHT_CUTOFF = int(os.getenv("TUBESYNC_VIDEO_HEIGHT_CUTOFF", "240"))

0 comments on commit 6c12244

Please sign in to comment.