summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 1d597f2ad..411814bcc 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -2668,7 +2668,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
feedId: feedId
}
};
- return this._request.post('news_feeds_delete', params);
+ return this._request["delete"]('news_feeds_delete', params);
};
Persistence.prototype.restoreFeed = function(feedId, onSuccess) {
@@ -2852,7 +2852,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
folderId: folderId
}
};
- return this._request.post('news_folders_delete', params);
+ return this._request["delete"]('news_folders_delete', params);
};
Persistence.prototype.restoreFolder = function(folderId, onSuccess) {