From: Mikael Nordfeldth Date: Sun, 1 Jun 2014 14:07:08 +0000 (+0200) Subject: There could be unresolvable FeedSub entries X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3ef8322b03ff0623936bf7baf838288904f75a1d;p=quix0rs-gnu-social.git There could be unresolvable FeedSub entries --- diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 19fa20f805..e78425c7d6 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -238,7 +238,11 @@ class Ostatus_profile extends Managed_DataObject public function garbageCollect() { $feedsub = FeedSub::getKV('uri', $this->feeduri); - return $feedsub->garbageCollect(); + if ($feedsub instanceof FeedSub) { + return $feedsub->garbageCollect(); + } + // Since there's no FeedSub we can assume it's already garbage collected + return true; } /**