mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 12:47:38 +03:00
Introduce DELETE_FILE_ON_TRASHCAN option, to delete files on the server
This commit is contained in:
parent
462a840a56
commit
8283716547
3 changed files with 6 additions and 1 deletions
|
@ -292,6 +292,9 @@ class DownloadQueue:
|
|||
if not self.done.exists(id):
|
||||
log.warn(f'requested delete for non-existent download {id}')
|
||||
continue
|
||||
if self.config.DELETE_FILE_ON_TRASHCAN:
|
||||
dl = self.done.get(id)
|
||||
os.remove(os.path.join(dl.download_dir, dl.info.filename))
|
||||
self.done.delete(id)
|
||||
await self.notifier.cleared(id)
|
||||
return {'status': 'ok'}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue