Fix ent.app install issue when installing via roles

revert-dabc3590
lasanthaDLPDS 5 years ago
parent d0466fb79a
commit ba24c1a03e

@ -109,11 +109,16 @@ public class ApplicationOperationsImpl implements ApplicationOperations {
.getDeviceManagementService(applicationOperationAction.getTenantId()).
getAllDevicesOfRole(userRole);
for (org.wso2.carbon.device.mgt.common.Device device : deviceList) {
if (MDMAppConstants.ACTIVE.equalsIgnoreCase(device.getEnrolmentInfo().getStatus().toString())) {
if (MDMAppConstants.WEBAPP.equals(applicationOperationAction.getApp().getPlatform())
|| applicationOperationAction.getApp().getPlatform()
.equalsIgnoreCase(device.getType())) {
if (MDMAppConstants.ACTIVE
.equalsIgnoreCase(device.getEnrolmentInfo().getStatus().toString())) {
deviceIdentifiers.add(getDeviceIdentifierByDevice(device));
}
}
}
}
} catch (DeviceManagementException devMgtEx) {
String errorMsg = "Error occurred fetch device for user role " + userRole + " at app installation";
logError(errorMsg, devMgtEx);

Loading…
Cancel
Save