From d537e16b1e5a7c551f4c78352282bf94a418f0d1 Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Wed, 17 Jul 2019 20:15:47 +0000 Subject: [PATCH] [Trunk | Library]: deletedByInference.service: Bug fix git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@56599 d315682c-612b-4755-9ff5-7f18f6832af3 --- .../deletedByInference/deletedByInference.service.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/landingPages/landing-utils/deletedByInference/deletedByInference.service.ts b/landingPages/landing-utils/deletedByInference/deletedByInference.service.ts index f28f4df9..455543b3 100644 --- a/landingPages/landing-utils/deletedByInference/deletedByInference.service.ts +++ b/landingPages/landing-utils/deletedByInference/deletedByInference.service.ts @@ -4,7 +4,6 @@ import {DeletedByInferenceResult} from '../../../utils/entities/deletedByInferen import {EnvProperties} from '../../../utils/properties/env-properties'; import {ParsingFunctions} from '../parsingFunctions.class'; import {map} from "rxjs/operators"; -import {DeletedByInferenceOrganization} from "../../../utils/entities/deletedByInferenceOrganization"; @Injectable() export class DeletedByInferenceService { @@ -129,7 +128,7 @@ export class DeletedByInferenceService { } } - if(_result['oaf:result'] && result['oaf:result']['pid']) { + if(_result['oaf:result'] && _result['oaf:result']['pid']) { result.identifiers = this.parsingFunctions.parseIdentifiers(_result['oaf:result']['pid']); }