nodeca / probe-image-size

Get image size without full download. Supported image types: JPG, GIF, PNG, WebP, BMP, TIFF, SVG, PSD, ICO.
MIT License
978 stars 77 forks source link

Fix stream cleanup #34

Closed crux153 closed 5 years ago

crux153 commented 5 years ago

In commit 0acaa785a55925a5310ad21166e0b66a32d6f67e, type checking for stream.unpipe was added. But stream.unpipe(proxy) got changed to stream.unpipe(this) (typo?) and this in here is undefined, which leads to improper cleanup. This commit reverts it to previous value.

rlidwka commented 5 years ago

Thank you very much, it was definitely a typo.