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

Commit

Permalink
add missing appdata to path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Dec 5, 2023
1 parent 6e461cd commit b8e018a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.46"
__version__ = "5.0.47"
2 changes: 1 addition & 1 deletion cyberdrop_dl/managers/path_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, manager: 'Manager'):
def pre_startup(self):
if self.manager.args_manager.appdata_dir:
global APP_STORAGE
APP_STORAGE = Path(self.manager.args_manager.appdata_dir)
APP_STORAGE = Path(self.manager.args_manager.appdata_dir) / "AppData"

self.cache_dir = APP_STORAGE / "Cache"
self.config_dir = APP_STORAGE / "Configs"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cyberdrop-dl"
version = "5.0.46"
version = "5.0.47"
description = "Bulk downloader for multiple file hosts"
authors = ["Jules Winnfield <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit b8e018a

Please sign in to comment.