Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: change stop recoding behaviour from delete to abort, fixes#…
…2472
  • Loading branch information
perexg committed Nov 12, 2014
1 parent 9990780 commit e296f3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/webui/static/app/epg.js
Expand Up @@ -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?'
});
}

Expand Down

0 comments on commit e296f3c

Please sign in to comment.