postalsys / imapflow

IMAP Client library for EmailEngine Email API (https://emailengine.app)
https://imapflow.com
Other
367 stars 64 forks source link

The return value of the listTree function does not contain delimiter #123

Closed keisuke-matsufuji closed 1 year ago

keisuke-matsufuji commented 1 year ago

Describe the bug The return value of the listTree function does not contain delimiter

To Reproduce Steps to reproduce the behavior:

  1. I called the listTree function according to this document
  2. The return value of the listTree function was as follows
    {
    name: 'bbbbbb',
    flags: [Set],
    path: 'INBOX.bbbbbb',
    subscribed: true,
    listed: true
    }

I consider that the object returned by the listTree function must contain the property delimiter

Expected behavior Delimiter is included in the return value of the listTree function

Screenshots

Desktop (please complete the following information):

Smartphone (please complete the following information):

Additional context If this is a known issue, I will try to create a PR that will solve this problem.

andris9 commented 1 year ago

Fixed with https://github.com/postalsys/imapflow/commit/1e8440f0b47fa0772c4bae59afba18fc94405199

keisuke-matsufuji commented 1 year ago

Thank you!