From f772e4e4956495a90c6d8d487c75baa34245099d Mon Sep 17 00:00:00 2001 From: wangsen1994 Date: Wed, 25 Jun 2025 14:51:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=96=E6=B6=88=E5=BA=94=E7=94=A8=E5=9B=BE?= =?UTF-8?q?=E6=A0=87=E9=80=9A=E7=9F=A5=E6=8F=90=E5=89=8D=E4=BC=A0=E8=BE=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangsen1994 --- services/distributed/src/soft_bus/distributed_cmd_service.cpp | 2 -- services/distributed/src/soft_bus/distributed_service.cpp | 3 --- 2 files changed, 5 deletions(-) diff --git a/services/distributed/src/soft_bus/distributed_cmd_service.cpp b/services/distributed/src/soft_bus/distributed_cmd_service.cpp index 6573549c3..1ea9f0372 100644 --- a/services/distributed/src/soft_bus/distributed_cmd_service.cpp +++ b/services/distributed/src/soft_bus/distributed_cmd_service.cpp @@ -219,8 +219,6 @@ void DistributedService::HandleMatchSync(const std::shared_ptr& boxMessa SyncAllLiveViewNotification(peerDevice, true); } else if (matchType == MatchType::MATCH_ACK) { InitDeviceState(peerDevice); - RequestBundlesIcon(peerDevice); - ReportBundleIconList(peerDevice); SubscribeNotifictaion(peerDevice); SyncAllLiveViewNotification(peerDevice, false); } diff --git a/services/distributed/src/soft_bus/distributed_service.cpp b/services/distributed/src/soft_bus/distributed_service.cpp index 98a4859c6..1721421c9 100644 --- a/services/distributed/src/soft_bus/distributed_service.cpp +++ b/services/distributed/src/soft_bus/distributed_service.cpp @@ -159,9 +159,6 @@ void DistributedService::OnHandleMsg(std::shared_ptr& box) case NotificationEventType::REMOVE_ALL_NOTIFICATIONS: RemoveNotifications(box); break; - case NotificationEventType::BUNDLE_ICON_SYNC: - HandleBundleIconSync(box); - break; case NotificationEventType::SYNC_NOTIFICATION: HandleNotificationSync(box); break; -- Gitee