Skip to content

Folder Overview #278

@epocci

Description

@epocci

Describe the bug
If you call $folder->overview("10:1") we got an error.

Expected behavior
Inverted sequence of emails

Additional context
Change code into ImapProtocol.php:

public function overview(string $sequence, $uid = IMAP::ST_UID): array { $result = []; list($from, $to) = explode(":", $sequence); 

to:

public function overview(string $sequence, $uid = IMAP::ST_UID): array { $result = []; list($from, $to) = explode(":", $sequence); if($to<$from){ list($to, $from) = explode(":", $sequence); } 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions