Fix rxjs throw

pull/572/head
Chocobozzz 2018-05-16 10:50:30 +02:00
parent a700f1837e
commit 1335920348
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 2 additions and 5 deletions

View File

@ -40,8 +40,7 @@ export class LoginComponent extends FormReactive implements OnInit {
private serverService: ServerService, private serverService: ServerService,
private redirectService: RedirectService, private redirectService: RedirectService,
private notificationsService: NotificationsService, private notificationsService: NotificationsService,
private formBuilder: FormBuilder, private formBuilder: FormBuilder) {
private router: Router) {
super() super()
} }

View File

@ -85,8 +85,6 @@ export class RestExtractor {
errorObj.body = err.error errorObj.body = err.error
} }
observableThrowError(errorObj) return observableThrowError(errorObj)
return of(undefined)
} }
} }