For some reason, some of my images are being prepended with 'unsafe:'
, which is causing them not to be rendered.
Q) Why is this happening and how can I fix it - Is this Angular 2 being odd with whitelisting or Ionic 2?
e.g.
<p><img src="unsafe:data:image/jpeg;base64,/9.....
<p><img src="data:image/jpeg;base64,/9.....
There is nothing wrong with the image (see here), see plunkr here
The second image is rendered from Ionic 2, the first I manually removed the prefix to show it's fine.