diff --git a/plugins/OStatus/scripts/renew-feeds.php b/plugins/OStatus/scripts/renew-feeds.php index 8f8ac3ee1d..d63f448827 100755 --- a/plugins/OStatus/scripts/renew-feeds.php +++ b/plugins/OStatus/scripts/renew-feeds.php @@ -37,7 +37,11 @@ try { while ($sub->fetch()) { echo "Renewing feed subscription\n\tExp.: {$sub->sub_end}\n\tFeed: {$sub->uri}\n\tHub: {$sub->huburi}\n"; - $sub->renew(); + try { + $sub->renew(); + } catch (Exception $e) { + echo "FAILED: {$e->getMessage()}\n"; + } } echo "Done!";