remove check for processing

This commit is contained in:
Scott E. Graves 2024-09-25 07:13:11 -05:00
parent ad97741e1e
commit 51358c7110

View File

@ -765,11 +765,6 @@ auto file_manager::rename_file(const std::string &from_api_path,
return api_error::file_in_use;
}
// Don't rename if destination file is uploading or downloading
if (is_processing(to_api_path)) {
return api_error::file_in_use;
}
// Handle destination file exists (should overwrite)
if (dest_exists) {
filesystem_item fsi{};