Skip to content

Commit

Permalink
fix: symlink pointed to wrong source path
Browse files Browse the repository at this point in the history
  • Loading branch information
Spoked authored and Spoked committed Feb 6, 2024
1 parent 282bd56 commit 740cb85
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 @@ -127,7 +127,7 @@ def _symlink(self, item):
except FileNotFoundError:
pass
os.symlink(
os.path.join(self.settings.library_path, item.folder, item.file),
os.path.join(self.rclone_path, item.folder, item.file),
destination,
)
logger.debug("Created symlink for %s", item.log_string)
Expand Down

0 comments on commit 740cb85

Please sign in to comment.