fix a lint error

pull/7960/head
mehmet-erim 5 years ago
parent 7e46a48e78
commit 442144e9f0

@ -117,8 +117,8 @@ export class ErrorHandler {
.subscribe();
}
private executeErrorHandler = err => {
const returnValue = this.httpErrorHandler(this.injector, err);
private executeErrorHandler = error => {
const returnValue = this.httpErrorHandler(this.injector, error);
return (returnValue instanceof Observable ? returnValue : of(null)).pipe(
catchError(err => {

Loading…
Cancel
Save