summaryrefslogtreecommitdiffstats
path: root/js/controller/NavigationController.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/controller/NavigationController.js')
-rw-r--r--js/controller/NavigationController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/controller/NavigationController.js b/js/controller/NavigationController.js
index 0b30a8070..800978b16 100644
--- a/js/controller/NavigationController.js
+++ b/js/controller/NavigationController.js
@@ -232,7 +232,7 @@ function ($route, FEED_TYPE, FeedResource, FolderResource, ItemResource,
};
this.renameFeed = function (feed) {
- FeedResource.rename(feed.id, feed.title);
+ FeedResource.patch(feed.id, {title: feed.title});
feed.editing = false;
};