summaryrefslogtreecommitdiffstats
path: root/external/feedapi.php
diff options
context:
space:
mode:
Diffstat (limited to 'external/feedapi.php')
-rw-r--r--external/feedapi.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/external/feedapi.php b/external/feedapi.php
index 684769c6e..fa0f27f7c 100644
--- a/external/feedapi.php
+++ b/external/feedapi.php
@@ -214,7 +214,10 @@ class FeedAPI extends Controller {
try {
$this->feedBusinessLayer->update($feedId, $userId);
// ignore update failure (feed could not be reachable etc, we dont care)
- } catch(BusinessLayerException $ex) {}
+ } catch(\Exception $ex) {
+ $this->api->log('Could not update feed ' . $ex->getMessage(),
+ 'debug');
+ }
return new JSONResponse();
}