Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Feb 3, 2019
2 parents 44e34a4 + 63054e8 commit 883cd56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions views/episodes.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@
hi: $(this).attr("data-hi"),
sonarrSeriesId: $(this).attr('data-sonarrSeriesId'),
sonarrEpisodeId: $(this).attr('data-sonarrEpisodeId'),
title: '{{!details[0].replace("'", "\\'")}}'
title: "{{!details[0].replace("'", "\\'")}}"
};

$('#loader_text').text("Downloading subtitle to disk...");
Expand Down Expand Up @@ -472,7 +472,7 @@
hi: hi,
sonarrSeriesId: sonarrSeriesId,
sonarrEpisodeId: sonarrEpisodeId,
title: '{{!details[0].replace("'", "\'")}}'
title: "{{!details[0].replace("'", "\'")}}"
};

$('#search_result').DataTable( {
Expand Down Expand Up @@ -556,7 +556,7 @@
hi: hi,
sonarrSeriesId: sonarrSeriesId,
sonarrEpisodeId: sonarrEpisodeId,
title: '{{!details[0].replace("'", "\\'")}}'
title: "{{!details[0].replace("'", "\\'")}}"
};

$('#loader_text').text("Downloading subtitle to disk...");
Expand Down
6 changes: 3 additions & 3 deletions views/movie.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
hi: $(this).attr("data-hi"),
radarrId: $(this).attr("data-radarrId"),
tmdbid: {{tmdbid}},
title: '{{!details[0].replace("'", "\\'")}}'
title: "{{!details[0].replace("'", "\\'")}}"
};

$('#loader_text').text("Downloading subtitle to disk...");
Expand Down Expand Up @@ -417,7 +417,7 @@
language: language,
hi: hi,
radarrId: radarrId,
title: '{{!details[0].replace("'", "\'")}}'
title: "{{!details[0].replace("'", "\'")}}"
};

$('#search_result').DataTable( {
Expand Down Expand Up @@ -501,7 +501,7 @@
language: $(button).attr("data-language"),
hi: hi,
radarrId: radarrId,
title: '{{!details[0].replace("'", "\\'")}}'
title: "{{!details[0].replace("'", "\\'")}}"
};

$('#loader_text').text("Downloading subtitle to disk...");
Expand Down

0 comments on commit 883cd56

Please sign in to comment.