summaryrefslogtreecommitdiffstats
path: root/external/feedapi.php
diff options
context:
space:
mode:
Diffstat (limited to 'external/feedapi.php')
-rw-r--r--external/feedapi.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/external/feedapi.php b/external/feedapi.php
index 8eabd6942..684769c6e 100644
--- a/external/feedapi.php
+++ b/external/feedapi.php
@@ -213,11 +213,9 @@ class FeedAPI extends Controller {
try {
$this->feedBusinessLayer->update($feedId, $userId);
- return new JSONResponse();
- } catch(BusinessLayerException $ex) {
- return new JSONResponse(array('message' => $ex->getMessage()),
- Http::STATUS_NOT_FOUND);
- }
+ // ignore update failure (feed could not be reachable etc, we dont care)
+ } catch(BusinessLayerException $ex) {}
+ return new JSONResponse();
}