From 777987abe351d45394cda0404f863147e83cb53e Mon Sep 17 00:00:00 2001 From: ychacon Date: Tue, 25 Apr 2023 10:02:56 +0200 Subject: [PATCH] Bug fix Issue-ID: NONRTRIC-861 Signed-off-by: ychacon Change-Id: Id77be8cfb5d857cb722277d11fda33b464c09a64 --- capifcore/internal/providermanagementapi/typeaccess.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ package providermanagementapi 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() } } -- 2.16.6