Skip to content

Commit

Permalink
fix: a new IPv6 nfProfile should be registred as a IPv6
Browse files Browse the repository at this point in the history
  • Loading branch information
adjivas authored and Alonza0314 committed Feb 21, 2025
1 parent 2e5d2fa commit ff6d70d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/context/management_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func nnrfNFManagementCondition(nf *models.NrfNfManagementNfProfile, nfprofile *m
if nfprofile.Ipv6Addresses != nil {
// fmt.Println("NsiList")
ipv6 := make([]string, len(nfprofile.Ipv6Addresses))
copy(ipv6, nfprofile.Ipv4Addresses)
copy(ipv6, nfprofile.Ipv6Addresses)
nf.Ipv6Addresses = ipv6
}
// DefaultNotificationSubscription
Expand Down

0 comments on commit ff6d70d

Please sign in to comment.