commit | 777987abe351d45394cda0404f863147e83cb53e | [log] [tgz] |
---|---|---|
author | ychacon <yennifer.chacon@est.tech> | Tue Apr 25 10:02:56 2023 +0200 |
committer | ychacon <yennifer.chacon@est.tech> | Tue Apr 25 10:02:56 2023 +0200 |
tree | b3d3b8d8ffced390d471e34f392fb79145a80800 | |
parent | b01ea504c8924bbf86355d6a888b767e6af853c0 [diff] |
Bug fix Issue-ID: NONRTRIC-861 Signed-off-by: ychacon <yennifer.chacon@est.tech> Change-Id: Id77be8cfb5d857cb722277d11fda33b464c09a64
diff --git a/capifcore/internal/providermanagementapi/typeaccess.go b/capifcore/internal/providermanagementapi/typeaccess.go index 78b68c0..5257701 100644 --- a/capifcore/internal/providermanagementapi/typeaccess.go +++ b/capifcore/internal/providermanagementapi/typeaccess.go
@@ -22,7 +22,7 @@ func (ed APIProviderEnrolmentDetails) GetExposingFunctionIdsForPublisher(apfId string) []string { for _, registeredFunc := range *ed.ApiProvFuncs { - if *registeredFunc.ApiProvFuncId == apfId && registeredFunc.isProvidingFunction() { + if *registeredFunc.ApiProvFuncId == apfId { return ed.getExposingFunctionIds() } }