From: Jaroslav Kysela Date: Wed, 12 Nov 2014 09:36:23 +0000 (+0100) Subject: WEBUI JS: change stop recoding behaviour from delete to abort, fixes#2472 X-Git-Tag: v4.1~780 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e296f3c3ac3c516ab120feafacdaa38373b98e02;p=thirdparty%2Ftvheadend.git WEBUI JS: change stop recoding behaviour from delete to abort, fixes#2472 --- diff --git a/src/webui/static/app/epg.js b/src/webui/static/app/epg.js index 133ea9c14..87310d2f4 100644 --- a/src/webui/static/app/epg.js +++ b/src/webui/static/app/epg.js @@ -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?' }); }