We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The bug appeared in 7.8.0, but is should be actual for the current version 7.10.0 as well
Here:
class WatchFolder(TaskManager): ... def cleanup_torrent_file(self, root, name): fullpath = root / name if not fullpath.exists(): self._logger.warning("File with path %s does not exist (anymore)", root / name) return fullpath.rename(Path(str(fullpath)+".corrupt"))
We need to check if renamed file already exists, and probably remove it before renaming
The text was updated successfully, but these errors were encountered:
Sentry issue: TRIBLER-73
Sorry, something went wrong.
Sentry issue: TRIBLER-LEGACY-BM
Fix Tribler#6238
60c90e4
9c677c4
Merge pull request #6401 from drew2a/fix/6238
2f5dfe3
Fix #6238
drew2a
Successfully merging a pull request may close this issue.
The bug appeared in 7.8.0, but is should be actual for the current version 7.10.0 as well
Here:
We need to check if renamed file already exists, and probably remove it before renaming
The text was updated successfully, but these errors were encountered: