diff --git a/src/app/core/data/comcol-data.service.ts b/src/app/core/data/comcol-data.service.ts index 86731b9696..a06a6bac9a 100644 --- a/src/app/core/data/comcol-data.service.ts +++ b/src/app/core/data/comcol-data.service.ts @@ -123,7 +123,7 @@ export abstract class ComColDataService extends DataS } public refreshCache(dso: T) { - const parentCommunityUrl = this.parentCommunityUrl(dso as any); + const parentCommunityUrl = this.parentCommunityUrlLookup(dso as any); if (!hasValue(parentCommunityUrl)) { return; } @@ -136,7 +136,7 @@ export abstract class ComColDataService extends DataS }); } - private parentCommunityUrl(dso: Collection | Community) { + private parentCommunityUrlLookup(dso: Collection | Community) { const parentCommunity = dso._links.parentCommunity; return isNotEmpty(parentCommunity) ? parentCommunity.href : null; }