mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
gui: imdb.com now only accepts 7 digit id
previously would allow 8 digits
This commit is contained in:
@@ -197,7 +197,7 @@ function reloadIndexers() {
|
|||||||
configuredTags = configuredIndexers.map(i => i.tags).reduce((a, g) => a.concat(g), []).filter((v, i, a) => a.indexOf(v) === i);
|
configuredTags = configuredIndexers.map(i => i.tags).reduce((a, g) => a.concat(g), []).filter((v, i, a) => a.indexOf(v) === i);
|
||||||
|
|
||||||
configureFilters(configuredIndexers);
|
configureFilters(configuredIndexers);
|
||||||
|
|
||||||
displayFilteredIndexersList(configuredIndexers, currentFilter);
|
displayFilteredIndexersList(configuredIndexers, currentFilter);
|
||||||
|
|
||||||
$('#indexers div.dataTables_filter input').focusWithoutScrolling();
|
$('#indexers div.dataTables_filter input').focusWithoutScrolling();
|
||||||
@@ -971,7 +971,7 @@ function updateReleasesRow(row) {
|
|||||||
labels.empty();
|
labels.empty();
|
||||||
|
|
||||||
if (IMDBId) {
|
if (IMDBId) {
|
||||||
labels.append('\n<a href="http://www.imdb.com/title/tt' + ("0000000" + IMDBId).slice(-8) + '/" class="label label-imdb" alt="IMDB" title="IMDB">IMDB</a>');
|
labels.append('\n<a href="https://www.imdb.com/title/tt' + ("0000000" + IMDBId).slice(-7) + '/" class="label label-imdb" alt="IMDB" title="IMDB">IMDB</a>');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isNaN(DownloadVolumeFactor)) {
|
if (!isNaN(DownloadVolumeFactor)) {
|
||||||
@@ -1124,7 +1124,7 @@ function showSearch(selectedFilter, selectedIndexer, query, category) {
|
|||||||
var searchTracker = releaseDialog.find("#searchTracker");
|
var searchTracker = releaseDialog.find("#searchTracker");
|
||||||
var searchCategory = releaseDialog.find('#searchCategory');
|
var searchCategory = releaseDialog.find('#searchCategory');
|
||||||
var searchFilter = releaseDialog.find('#searchFilter');
|
var searchFilter = releaseDialog.find('#searchFilter');
|
||||||
|
|
||||||
searchFilter.multiselect({
|
searchFilter.multiselect({
|
||||||
maxHeight: 400,
|
maxHeight: 400,
|
||||||
enableFiltering: true,
|
enableFiltering: true,
|
||||||
|
@@ -732,6 +732,6 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript" src="../libs/api.js?changed=2017083001"></script>
|
<script type="text/javascript" src="../libs/api.js?changed=2017083001"></script>
|
||||||
<script type="text/javascript" src="../custom.js?changed=PR12300"></script>
|
<script type="text/javascript" src="../custom.js?changed=20211022"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Reference in New Issue
Block a user