mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 09:27:03 +03:00
Fix "message can't be marked seen" (#1427)
This commit is contained in:
parent
aa2215bf3d
commit
2234212201
1 changed files with 112 additions and 110 deletions
|
|
@ -105,6 +105,8 @@ class FolderInformation
|
|||
*/
|
||||
public function IsFlagSupported($sFlag)
|
||||
{
|
||||
return \in_array('\\*', $this->PermanentFlags) || \in_array($sFlag, $this->PermanentFlags);
|
||||
return \in_array('\\*', $this->PermanentFlags) ||
|
||||
\in_array($sFlag, $this->PermanentFlags) ||
|
||||
\in_array($sFlag, $this->Flags);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue