WEBUI JS: change stop recoding behaviour from delete to abort, fixes#2472
This commit is contained in:
parent
99907809bb
commit
e296f3c3ac
1 changed files with 3 additions and 2 deletions
|
@ -247,13 +247,14 @@ tvheadend.epgDetails = function(event) {
|
|||
|
||||
function stopDVR() {
|
||||
tvheadend.AjaxConfirm({
|
||||
url: 'api/idnode/delete',
|
||||
url: 'api/dvr/entry/cancel',
|
||||
params: {
|
||||
uuid: event.dvrUuid,
|
||||
},
|
||||
success: function(d) {
|
||||
win.close();
|
||||
}
|
||||
},
|
||||
question: 'Do you really want to abort/unschedule this event?'
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue