mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-14 05:26:28 +00:00
expose storage move failure - micah
This commit is contained in:
parent
9e80e91ae9
commit
ee7137a196
@ -216,6 +216,14 @@ namespace libtorrent
|
||||
break;
|
||||
case disk_io_job::move_storage:
|
||||
ret = j.storage->move_storage_impl(j.str) ? 1 : 0;
|
||||
if(ret)
|
||||
{
|
||||
j.str = "move_success";
|
||||
}
|
||||
else
|
||||
{
|
||||
j.str = "move_failed";
|
||||
}
|
||||
break;
|
||||
case disk_io_job::release_files:
|
||||
j.storage->release_files_impl();
|
||||
|
Loading…
x
Reference in New Issue
Block a user