Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DerAndereAndi committed Jan 5, 2024
1 parent 2066c8f commit 7590ab7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spine/device_local.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ func (r *DeviceLocalImpl) ProcessCmd(datagram model.DatagramType, remoteDevice *
return nil
}

func (r *DeviceLocalImpl) NodeManagement() NodeManagementImpl {
return *r.nodeManagement
func (r *DeviceLocalImpl) NodeManagement() *NodeManagementImpl {
return r.nodeManagement
}

func (r *DeviceLocalImpl) SubscriptionManager() SubscriptionManager {
Expand Down

0 comments on commit 7590ab7

Please sign in to comment.