diff --git a/landingPages/result/resultLanding.service.ts b/landingPages/result/resultLanding.service.ts index 22af2e71..ff67ac01 100644 --- a/landingPages/result/resultLanding.service.ts +++ b/landingPages/result/resultLanding.service.ts @@ -97,8 +97,6 @@ export class ResultLandingService { ? res[1]['extraInfo']['references']['reference'] : null, // 12 res[0], // 13 res[2], // 14 - (res[1]['extraInfo'] !== undefined && res[1]['extraInfo']['citations'] !== undefined) - ? res[1]['extraInfo']['citations']['citation'] : null, // 15 ])) .pipe(map(res => this.parseResultLandingInfo(res, provenanceActionVocabulary, subjectsVocabulary, relationsVocabulary, properties))); } @@ -372,11 +370,6 @@ export class ResultLandingService { this.resultLandingInfo.references = this.parsingFunctions.parseReferences(data[12]); } - // #7509 - OLD: res['result']['metadata']['oaf:entity']['extraInfo']['citations']['citation'] - if(data[12] == null && data[15] != null) { - this.resultLandingInfo.references = this.parsingFunctions.parseReferences(data[15]); - } - // res['result']['metadata']['oaf:entity']['oaf:result']['context'] if(data[8] != null) { this.resultLandingInfo.contexts = this.parsingFunctions.parseContexts(data[8]);