File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import { IDENTIFIERS } from '../../shared/object-list/identifier-data/identifier
1717import { IdentifierData } from '../../shared/object-list/identifier-data/identifier-data.model' ;
1818import { getFirstCompletedRemoteData } from '../shared/operators' ;
1919import { map , switchMap } from 'rxjs/operators' ;
20- import { ConfigurationProperty } from '../shared/configuration-property.model' ;
21- import { ConfigurationDataService } from './configuration-data.service' ;
20+ import { ConfigurationProperty } from '../shared/configuration-property.model' ;
21+ import { ConfigurationDataService } from './configuration-data.service' ;
2222import { HttpOptions } from '../dspace-rest/dspace-rest.service' ;
2323import { PostRequest } from './request.models' ;
2424import { sendRequest } from '../shared/request.operators' ;
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export class HALEndpointService {
2424 constructor (
2525 private requestService : RequestService ,
2626 private rdbService : RemoteDataBuildService
27- ) {
27+ ) {
2828 }
2929
3030 public getRootHref ( ) : string {
@@ -37,7 +37,9 @@ export class HALEndpointService {
3737
3838 private getEndpointMapAt ( href ) : Observable < EndpointMap > {
3939 const request = new EndpointMapRequest ( this . requestService . generateRequestId ( ) , href ) ;
40+
4041 this . requestService . send ( request , true ) ;
42+
4143 return this . rdbService . buildFromHref < CacheableObject > ( href ) . pipe (
4244 // Re-request stale responses
4345 tap ( ( rd : RemoteData < CacheableObject > ) => {
You can’t perform that action at this time.
0 commit comments