diff --git a/controller/nucleus/networkElementWatcher.go b/controller/nucleus/networkElementWatcher.go
index a81fd7a9c4d5aeb5023aab7df5b2f29507b5c2da..9aec23185db19e32afeaa9dbbb1d89f136941907 100644
--- a/controller/nucleus/networkElementWatcher.go
+++ b/controller/nucleus/networkElementWatcher.go
@@ -247,11 +247,11 @@ func (n *NetworkElementWatcher) handleSubscribeResponseUpdate(resp *gpb.Subscrib
 
 		switch v := update.GetVal().GetValue().(type) {
 		case *gpb.TypedValue_StringVal:
-			pathsAndValues[pathString] = update.Val.GetStringVal()
+			pathsAndValues[pathString] = update.GetVal().GetStringVal()
 		case *gpb.TypedValue_JsonIetfVal:
 			pathsAndValues[pathString] = string(update.GetVal().GetJsonIetfVal())
 		case *gpb.TypedValue_UintVal:
-			pathsAndValues[pathString] = fmt.Sprintf("%d", update.Val.GetUintVal())
+			pathsAndValues[pathString] = fmt.Sprintf("%d", update.GetVal().GetUintVal())
 		default:
 			log.Errorf("The given value of type: %T, provided by a SubResponse from network element with ID: %s is not supported", v, subscriptionInfo.NetworkElementID)
 			return