File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
OpenAPI/LearningHub.Nhs.OpenApi.Services/Services Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ public async Task<SearchResultModel> GetSearchResultAsync(SearchRequestModel sea
106106 var client = await this . findwiseClient . GetClient ( this . findwiseConfig . SearchBaseUrl ) ;
107107
108108 var request = string . Format (
109- this . findwiseConfig . SearchEndpointPath + "?offset={1}&hits={2}&q={3}&token={4}" ,
109+ this . findwiseConfig . SearchEndpointPath + "{0} ?offset={1}&hits={2}&q={3}&token={4}" ,
110110 this . findwiseConfig . CollectionIds . Resource ,
111111 offset ,
112112 pageSize ,
@@ -183,7 +183,7 @@ public async Task<SearchCatalogueResultModel> GetCatalogueSearchResultAsync(Cata
183183 var offset = catalogSearchRequestModel . PageIndex * catalogSearchRequestModel . PageSize ;
184184 var client = await this . findwiseClient . GetClient ( this . findwiseConfig . SearchBaseUrl ) ;
185185 var request = string . Format (
186- this . findwiseConfig . SearchEndpointPath + "?offset={1}&hits={2}&q={3}&token={4}" ,
186+ this . findwiseConfig . SearchEndpointPath + "{0} ?offset={1}&hits={2}&q={3}&token={4}" ,
187187 this . findwiseConfig . CollectionIds . Catalogue ,
188188 offset ,
189189 catalogSearchRequestModel . PageSize ,
You can’t perform that action at this time.
0 commit comments