I have following Service which was working fine until today i got this error
TypeError: this.http.g
The 'O' character in 'rxjs/Observable' must be Upper Case.
Specifying it in lower case 'o', will give you this and other spooky errors. This must be imported like this:
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/catch';
import 'rxjs/add/observable/throw';
It took me an hour to find it. When using import, generally, the names are in lower case. This is the first time I'm seeing this. I hope it will help the others :)