summaryrefslogtreecommitdiffstats
path: root/js/controller
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-11-01 15:16:15 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2015-11-01 15:16:15 +0100
commita42da9a97c7fc84af09e01f3d6f3ee80a46b763b (patch)
treecf4b58d55c0f4e46db3dbea1bd3bd93f155d107c /js/controller
parentcc5dd4231b11f87a7b0d0e66a7d00e62d11f7fb9 (diff)
clean up feed api
Diffstat (limited to 'js/controller')
-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;
};