mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix filtering by device name not working with all and device subscriptions
This commit is contained in:
parent
f0fafde0d2
commit
9561e003bf
@ -2469,10 +2469,10 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
OwnerWithDeviceDTO ownerWithDevice =
|
||||
deviceManagementProviderService.getOwnerWithDeviceByDeviceId(deviceId, request.getOwner(), request.getDeviceName(),
|
||||
request.getDeviceStatus());
|
||||
if (ownerWithDevice == null) {
|
||||
if (ownerWithDevice == null || (request.getDeviceName() != null && !request.getDeviceName().isEmpty() &&
|
||||
(ownerWithDevice.getDeviceNames() == null || !ownerWithDevice.getDeviceNames().contains(request.getDeviceName())))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (deviceSubscriptionMap.containsKey(deviceId)) {
|
||||
DeviceSubscriptionDTO subscription = deviceSubscriptionMap.get(deviceId);
|
||||
DeviceSubscriptionData deviceDetail = new DeviceSubscriptionData();
|
||||
@ -2664,10 +2664,10 @@ public class SubscriptionManagerImpl implements SubscriptionManager {
|
||||
OwnerWithDeviceDTO ownerWithDevice =
|
||||
deviceManagementProviderService.getOwnerWithDeviceByDeviceId(deviceId, request.getOwner(), request.getDeviceName(),
|
||||
request.getDeviceStatus());
|
||||
if (ownerWithDevice == null) {
|
||||
if (ownerWithDevice == null || (request.getDeviceName() != null && !request.getDeviceName().isEmpty() &&
|
||||
(ownerWithDevice.getDeviceNames() == null || !ownerWithDevice.getDeviceNames().contains(request.getDeviceName())))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (allSubscriptionMap.containsKey(deviceId)) {
|
||||
DeviceSubscriptionDTO subscription = allSubscriptionMap.get(deviceId);
|
||||
DeviceSubscriptionData deviceDetail = new DeviceSubscriptionData();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user