Don't fail deleteRelated on NoProfileException

This commit is contained in:
Mikael Nordfeldth 2016-04-01 06:51:19 +02:00
parent 195285ac2f
commit 547f92de07
1 changed files with 4 additions and 0 deletions

View File

@ -279,6 +279,10 @@ abstract class ActivityHandlerPlugin extends Plugin
if ($this->isMyNotice($notice)) {
try {
$this->deleteRelated($notice);
} catch (NoProfileException $e) {
// we failed because of database lookup failure, Notice has no recognized profile as creator
// so we skip this. If we want to remove missing notices we should do a SQL constraints check
// in the affected plugin.
} catch (AlreadyFulfilledException $e) {
// Nothing to see here, it's obviously already gone...
}