Fix "message can't be marked seen" (#1427)

This commit is contained in:
RainLoop Team 2017-05-24 19:06:40 +03:00
parent aa2215bf3d
commit 2234212201

View file

@ -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);
}
}