Skip to content

Commit

Permalink
fix: library path pointed to wrong path
Browse files Browse the repository at this point in the history
  • Loading branch information
Spoked authored and Spoked committed Feb 3, 2024
1 parent ff9b850 commit 4dd9c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/program/symlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def validate(self):
def create_initial_folders(self):
"""Create the initial library folders."""
try:
self.library_path = self.settings.container_path.parent / "library"
self.library_path = self.settings.host_path.parent / "library"
self.library_path_movies = self.library_path / "movies"
self.library_path_shows = self.library_path / "shows"
self.library_path_anime_movies = self.library_path / "anime_movies"
Expand Down

0 comments on commit 4dd9c5f

Please sign in to comment.