chirag04 / mail-listener2

Mail listener library for node.js. Get notification when new email arrived.
MIT License
245 stars 116 forks source link

Unbreak attachmentOptions #26

Closed goldibex closed 10 years ago

goldibex commented 10 years ago

The existing check fails if attachmentOptions isn't set because it looks at options.attachmentOptions, which may be (and in my case is) undefined, not this.attachmentOptions, which is what gets defaulted with {} by the assignment in line 24. This simple change unbreaks things.

chirag04 commented 10 years ago

:+1: Thanks!