diff --git a/services/distributed/src/soft_bus/distributed_cmd_service.cpp b/services/distributed/src/soft_bus/distributed_cmd_service.cpp index 6573549c35d511d642caac8739983a95f012dbdd..1ea9f037242da2c129e4c744b390a8693bb1e5e1 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 98a4859c68870f20aa5d861fd4b5a8e639ba974c..1721421c98c4f36d8c8474b4b81388b4bf05dfeb 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;