Skip to content

Commit

Permalink
fix(Felamimail/Account): skip access denied exception for setSieve
Browse files Browse the repository at this point in the history
  • Loading branch information
ccheng-dev committed Feb 19, 2024
1 parent 7c44ca9 commit 66fa50b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tine20/Felamimail/Controller/Account.php
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,12 @@ protected function _inspectAfterSetRelatedDataUpdate($updatedRecord, $record, $c
case Felamimail_Model_Account::TYPE_SYSTEM:
case Felamimail_Model_Account::TYPE_SHARED:
case Felamimail_Model_Account::TYPE_USER_INTERNAL:
$this->_afterUpdateSetSieve($updatedRecord, $record, $currentRecord);
try {
$this->_afterUpdateSetSieve($updatedRecord, $record, $currentRecord);
} catch (Tinebase_Exception_AccessDenied $tead) {
if (Tinebase_Core::isLogLevel(Zend_Log::WARN)) Tinebase_Core::getLogger()->warn(__METHOD__ . '::' . __LINE__ .
' ' . $tead->getMessage());
}
break;
}

Expand Down

0 comments on commit 66fa50b

Please sign in to comment.