1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-10 23:29:53 +02:00

DeleteRootDir and AddSeries shared the same method, which caused addSeries to fail.

This commit is contained in:
Mark McDowall 2011-06-02 19:09:24 -07:00
parent 4f16615e8b
commit eb3875d43b

View File

@ -131,10 +131,10 @@
var deleteRootDirUrl = '@Url.Action("DeleteRootDir", "AddSeries")';
function deleteRootDir(id) {
sendToServer(id);
sendDeleteToServer(id);
}
function sendToServer(id) {
function sendDeleteToServer(id) {
$.ajax({
type: "POST",
url: deleteRootDirUrl,