Bugfix: i broke the DoFolderInformation() response

This commit is contained in:
djmaze 2021-11-01 09:15:16 +01:00
parent 7188ae753e
commit d3500e2921

View file

@ -379,7 +379,8 @@ trait Folders
'IsPhishing' => \in_array(\strtolower('$Phishing'), $aLowerFlags)
);
}
$aInboxInformation['Flags'] = \array_values($aInboxInformation['MessageFlags']);
$aInboxInformation['Flags'] = \array_values($aInboxInformation['Flags']);
unset($aInboxInformation['MessageFlags']);
}
catch (\Throwable $oException)
{