preserve order during opml import (#707)

This commit is contained in:
Athou
2015-02-23 14:11:23 +01:00
parent 5c9e1406a1
commit 9f196bafe9
4 changed files with 19 additions and 10 deletions

View File

@@ -395,7 +395,7 @@ public class FeedREST {
url = fetchFeedInternal(url).getUrl();
FeedInfo info = fetchFeedInternal(url);
feedSubscriptionService.subscribe(user, info.getUrl(), info.getTitle(), null);
feedSubscriptionService.subscribe(user, info.getUrl(), info.getTitle());
} catch (Exception e) {
log.info("Could not subscribe to url {} : {}", url, e.getMessage());
}