feat(export): update export logic

This commit is contained in:
uncor3
2026-02-25 07:59:43 +00:00
parent c85342d90b
commit 83dfbd7052
2 changed files with 6 additions and 9 deletions
+4 -2
View File
@@ -297,7 +297,8 @@ void AfcExplorerWidget::onFileListContextMenu(const QPoint &pos)
QString fileName = selItem->text();
QString devicePath =
currPath == "/" ? "/" + fileName : currPath + fileName;
exportItems.append(ExportItem(devicePath, fileName, index));
exportItems.append(
ExportItem(devicePath, fileName, m_device->udid, index));
index++;
}
@@ -354,7 +355,8 @@ void AfcExplorerWidget::onExportClicked()
QString fileName = item->text();
QString devicePath =
currPath == "/" ? "/" + fileName : currPath + fileName;
exportItems.append(ExportItem(devicePath, fileName, index));
exportItems.append(
ExportItem(devicePath, fileName, m_device->udid, index));
index++;
}