From: Mikael Nordfeldth Date: Fri, 1 Apr 2016 04:51:19 +0000 (+0200) Subject: Don't fail deleteRelated on NoProfileException X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=547f92de070f425b9b0415c7aa87b173c630a2b0;p=quix0rs-gnu-social.git Don't fail deleteRelated on NoProfileException --- diff --git a/lib/activityhandlerplugin.php b/lib/activityhandlerplugin.php index 8f28da85d6..c06f723a36 100644 --- a/lib/activityhandlerplugin.php +++ b/lib/activityhandlerplugin.php @@ -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... }