From 19f8d210b9f5e64ac682ddee08288c0a081db8a2 Mon Sep 17 00:00:00 2001 From: hunili Date: Sat, 7 Jun 2025 12:59:40 +0800 Subject: [PATCH] [Bug]: DPicker&file https://gitee.com/openharmony/filemanagement_dfs_service/issues/ICBF9N Signed-off-by: hunili --- .../distributedfiledaemon/src/device/device_manager_agent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/distributedfiledaemon/src/device/device_manager_agent.cpp b/services/distributedfiledaemon/src/device/device_manager_agent.cpp index 535f730bf..e1030be65 100644 --- a/services/distributedfiledaemon/src/device/device_manager_agent.cpp +++ b/services/distributedfiledaemon/src/device/device_manager_agent.cpp @@ -475,7 +475,7 @@ int32_t DeviceManagerAgent::MountDfsDocs(const std::string &networkId, const std LOGE("storageMgrProxy_ is null"); return INVALID_USER_ID; } - ret = storageMgrProxy_->MountDfsDocs(userId, "account", networkId, deviceId); + ret = storageMgrProxy_->MountDfsDocs(userId, "account", networkId, deviceId, false); if (ret != NO_ERROR) { LOGE("MountDfsDocs fail, ret = %{public}d", ret); } else { -- Gitee