summaryrefslogtreecommitdiffstats
path: root/service
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-05 11:30:27 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-05 11:30:38 +0100
commit95530f62513a82c385d9378b4a59da57d74092d9 (patch)
treea4d17994548999b42e99371f381da8c256ee39bf /service
parent57163ad25a7dc63abd8aff8663c185ddad398466 (diff)
update picofeed, add max size setting, fix #642
Diffstat (limited to 'service')
-rw-r--r--service/feedservice.php8
1 files changed, 1 insertions, 7 deletions
diff --git a/service/feedservice.php b/service/feedservice.php
index e0514b35f..a2eec7883 100644
--- a/service/feedservice.php
+++ b/service/feedservice.php
@@ -147,13 +147,7 @@ class FeedService extends Service {
return $feed;
} catch(FetcherException $ex){
$this->logger->debug($ex->getMessage(), $this->loggerParams);
- throw new ServiceNotFoundException(
- $this->l10n->t(
- 'Can not add feed: URL does not exist, ' .
- 'SSL Certificate can not be validated ' .
- 'or feed has invalid xml'
- )
- );
+ throw new ServiceNotFoundException($ex->getMessage());
}
}