Skip to content
Snippets Groups Projects
Commit b64fc870 authored by Giuseppe Digilio's avatar Giuseppe Digilio
Browse files

Reverted inappropriate changes

parent 5eadc0b8
No related branches found
No related tags found
No related merge requests found
......@@ -67,10 +67,7 @@ export class DSpaceRESTv2Service {
requestOptions.responseType = options.responseType;
}
return this.http.request(method, url, requestOptions)
.map((res) => {
console.log(res);
return ({ payload: res.body, headers: res.headers, statusCode: res.statusText })
})
.map((res) => ({ payload: res.body, headers: res.headers, statusCode: res.statusText }))
.catch((err) => {
console.log('Error: ', err);
return Observable.throw(err);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment