From cf5a7a553b72b08671d71d8ce6e162232f5c6901 Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Fri, 10 Apr 2020 06:12:07 +0000 Subject: [PATCH] [Trunk | Connect]: searchCommunities.component.ts: remove email parameter from "getCommunitiesSubscribedTo()" method call (subscribe.service). git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-connect-portal/trunk@58462 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/searchPages/communities/searchCommunities.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/searchPages/communities/searchCommunities.component.ts b/src/app/searchPages/communities/searchCommunities.component.ts index b3fe225..fafd835 100644 --- a/src/app/searchPages/communities/searchCommunities.component.ts +++ b/src/app/searchPages/communities/searchCommunities.component.ts @@ -121,7 +121,7 @@ export class SearchCommunitiesComponent { } } if(this.user) { - this._subscribeService.getCommunitiesSubscribedTo(this.properties, this.user.email).subscribe( + this._subscribeService.getCommunitiesSubscribedTo(this.properties/*, this.user.email*/).subscribe( res => { for (let i = 0; i < this.totalResults.length; i++) { this.totalResults[i].isSubscribed = (res.indexOf(this.totalResults[i].communityId) != -1);