mirror of https://github.com/morpheus65535/bazarr
WIP
This commit is contained in:
parent
d32bb22e2d
commit
5dba7a4181
|
@ -426,7 +426,7 @@
|
|||
sonarrEpisodeId: $(this).attr("data-sonarrEpisodeId"),
|
||||
tvdbid: seriesDetails['tvdbId']
|
||||
};
|
||||
var cell = $(this).parent();
|
||||
var cell = $(this).closest('td');
|
||||
$.ajax({
|
||||
url: "{{ url_for('api.episodessubtitlesdelete') }}",
|
||||
type: "DELETE",
|
||||
|
@ -451,7 +451,7 @@
|
|||
sonarrEpisodeId: $(this).attr('data-sonarrepisodeid'),
|
||||
title: seriesDetails['title']
|
||||
};
|
||||
var cell = $(this).parent();
|
||||
var cell = $(this).closest('td');
|
||||
$.ajax({
|
||||
url: "{{ url_for('api.episodessubtitlesdownload') }}",
|
||||
type: "POST",
|
||||
|
@ -588,7 +588,7 @@
|
|||
sonarrEpisodeId: $(this).attr('data-sonarrepisodeid'),
|
||||
title: seriesDetails['title']
|
||||
};
|
||||
var cell = $(this).parent();
|
||||
var cell = $(this).closest('td');
|
||||
$.ajax({
|
||||
url: "{{ url_for('api.episodessubtitlesmanualdownload') }}",
|
||||
type: "POST",
|
||||
|
|
Loading…
Reference in New Issue