diff --git a/ICCC/ICCCListenerUpdateReceiver.go b/ICCC/ICCCListenerUpdateReceiver.go index ce3fc89..17c2e0f 100644 --- a/ICCC/ICCCListenerUpdateReceiver.go +++ b/ICCC/ICCCListenerUpdateReceiver.go @@ -39,6 +39,7 @@ func ICCCListenerUpdateReceiver(data map[string][]string) (result map[string][]s updatedObject.Command = messageData.Command updatedObject.IPAddressPort = messageData.IPAddressPort updatedObject.IsActive = messageData.IsActiveNew + updatedObject.Kind = messageData.Kind // Update the entry: if errUpdate := collectionListener.Update(selectionUpdate, updatedObject); errUpdate != nil { diff --git a/ICCC/SystemMessages/ICCCListenerUpdate.go b/ICCC/SystemMessages/ICCCListenerUpdate.go index df33b4f..bf7fe2b 100644 --- a/ICCC/SystemMessages/ICCCListenerUpdate.go +++ b/ICCC/SystemMessages/ICCCListenerUpdate.go @@ -6,4 +6,5 @@ type ICCCListenerUpdate struct { Command string IPAddressPort string IsActiveNew bool + Kind byte } diff --git a/System/Version/Variables.go b/System/Version/Variables.go index 9ef3acb..331ad30 100644 --- a/System/Version/Variables.go +++ b/System/Version/Variables.go @@ -1,5 +1,5 @@ package Version var ( - oceansVersion string = `2.0.2` // Ocean's current version + oceansVersion string = `2.0.3` // Ocean's current version )