I got one wired issue on Lazyload library.
It's working fine with the image URL and its loading image and caching it.
But when a new image is replaced with an old one on the same URL, it does not fetch a new one from the same URL and only shows the old one from cache.
How can I refresh my cache with new image data?
Code which I am using right now:
<img class="disti-img" [defaultImage]="defaultImage" [lazyLoad]="selectedDistiImg">
Can anyone help me on this issue?