Merge pull request 'Fix EVENT_REVOKE operation is not being sent after geofence delete' (#397) from pramilaniroshan/device-mgt-core:rm-11182 into master

Reviewed-on: https://repository.entgra.net/community/device-mgt-core/pulls/397
This commit is contained in:
Pahansith Gunathilake 2024-05-20 06:55:44 +00:00
commit 01cf668905
2 changed files with 6 additions and 0 deletions

View File

@ -626,6 +626,9 @@ public class GenericGeofenceDAOImpl extends AbstractGeofenceDAOImpl {
geofenceData.setGroupData(groupMap);
}
}
if (geofenceData != null) {
geofenceData.setGroupIds(new ArrayList<>(groupMap.keySet()));
}
return geofenceData;
}
} catch (SQLException e) {

View File

@ -157,6 +157,9 @@ public class SQLServerGeofenceDAOImpl extends AbstractGeofenceDAOImpl {
geofenceData.setFenceShape(rst.getString("FENCE_SHAPE"));
geofenceData.setGroupData(groupMap);
}
if (geofenceData != null) {
geofenceData.setGroupIds(new ArrayList<>(groupMap.keySet()));
}
return geofenceData;
}
}