Update toaster-error-handler.ts

This commit is contained in:
piotrpekala7 2020-06-09 13:17:37 +02:00
parent 7fa49824c6
commit bf292b4286

View File

@ -4,7 +4,8 @@ import { ToasterService } from '../../services/toaster.service';
export class ToasterErrorHandler extends RavenErrorHandler {
handleError(err: any): void {
super.handleError(err);
if (!err) return;
const toasterService = this.injector.get(ToasterService);
if (err.error && err.error.message) {
toasterService.error(err.error.message);