|
@@ -247,7 +247,7 @@ namespace AzToolsFramework
|
|
fromPath = item->GetFullPath();
|
|
fromPath = item->GetFullPath();
|
|
}
|
|
}
|
|
AssetChangeReportRequest request(
|
|
AssetChangeReportRequest request(
|
|
- AZ::OSString(fromPath.c_str()), AZ::OSString(""), AssetChangeReportRequest::ChangeType::CheckDelete);
|
|
|
|
|
|
+ AZ::OSString(fromPath.c_str()), AZ::OSString(""), AssetChangeReportRequest::ChangeType::CheckDelete, isFolder);
|
|
AssetChangeReportResponse response;
|
|
AssetChangeReportResponse response;
|
|
|
|
|
|
if (SendRequest(request, response))
|
|
if (SendRequest(request, response))
|
|
@@ -300,7 +300,7 @@ namespace AzToolsFramework
|
|
if (canDelete)
|
|
if (canDelete)
|
|
{
|
|
{
|
|
AssetChangeReportRequest deleteRequest(
|
|
AssetChangeReportRequest deleteRequest(
|
|
- AZ::OSString(fromPath.c_str()), AZ::OSString(""), AssetChangeReportRequest::ChangeType::Delete);
|
|
|
|
|
|
+ AZ::OSString(fromPath.c_str()), AZ::OSString(""), AssetChangeReportRequest::ChangeType::Delete, isFolder);
|
|
AssetChangeReportResponse deleteResponse;
|
|
AssetChangeReportResponse deleteResponse;
|
|
if (SendRequest(deleteRequest, deleteResponse))
|
|
if (SendRequest(deleteRequest, deleteResponse))
|
|
{
|
|
{
|