summaryrefslogtreecommitdiffstats
path: root/ajax/importopml.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-08-18 03:16:40 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-08-18 03:16:40 -0400
commit41c310c5fc3790d7e5f6cb4862f5b09537002ffb (patch)
tree396019cb69168fe99be8859f56a5a41f7cc95cf3 /ajax/importopml.php
parent455e8380f33bc7b4d7658e2ea153aae8a250b318 (diff)
perform only a slim fetch in some cases
Diffstat (limited to 'ajax/importopml.php')
-rw-r--r--ajax/importopml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/ajax/importopml.php b/ajax/importopml.php
index b21939b29..80196d176 100644
--- a/ajax/importopml.php
+++ b/ajax/importopml.php
@@ -50,7 +50,7 @@ function importFeed($feedurl, $folderid) {
$l = OC_L10N::get('news');
if ($feedid === null) {
- $feed = OCA\News\Utils::fetch($feedurl);
+ $feed = OCA\News\Utils::slimFetch($feedurl);
if ($feed !== null) {
$feedid = $feedmapper->save($feed, $folderid);