mirror of
				https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
				synced 2025-10-31 18:47:57 +00:00 
			
		
		
		
	Fix NPE dereference error in VIF state table processing when the details for ACTIVE_BSSIDS == null
This commit is contained in:
		| @@ -989,7 +989,7 @@ public class OpensyncExternalIntegrationCloud implements OpensyncExternalIntegra | ||||
|  | ||||
|         Status activeBssidsStatus = statusServiceInterface.getOrNull(customerId, equipmentId, | ||||
|                 StatusDataType.ACTIVE_BSSIDS); | ||||
|         if (activeBssidsStatus != null) { | ||||
|         if (activeBssidsStatus != null && activeBssidsStatus.getDetails() != null) { | ||||
|             updateClientDetailsStatus(customerId, equipmentId, (ActiveBSSIDs) activeBssidsStatus.getDetails()); | ||||
|         } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Mike Hansen
					Mike Hansen