Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
fix download_directory path breaking on case-sensitive filesystems
Browse files Browse the repository at this point in the history
+ mistakenly .capitalize() was added for the download_directory path, which caused incompability on systems with case-sensitive filesystems
  • Loading branch information
Avnsx authored Jul 17, 2023
1 parent 6d14d4a commit bc0b8d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fansly_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def open_url(url_to_open: str):
separate_previews = config.getboolean('Options', 'separate_previews') # True, False -> boolean
separate_timeline = config.getboolean('Options', 'separate_timeline') # True, False -> boolean
utilise_duplicate_threshold = config.getboolean('Options', 'utilise_duplicate_threshold') # True, False -> boolean
download_directory = config.get('Options', 'download_directory').capitalize() # Local_directory, C:\MyCustomFolderFilePath -> str
download_directory = config.get('Options', 'download_directory') # Local_directory, C:\MyCustomFolderFilePath -> str

# Other
current_version = config.get('Other', 'version') # str
Expand Down

0 comments on commit bc0b8d4

Please sign in to comment.