mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 13:46:10 +00:00
mteamtp: remove imdb from releases response
Removed due to some collections being mapped as a single imdbid resulting in huge grabs.
This commit is contained in:
parent
e13a35e7a3
commit
ed72348b15
1 changed files with 0 additions and 6 deletions
|
@ -12,7 +12,6 @@ using Jackett.Common.Models;
|
||||||
using Jackett.Common.Models.IndexerConfig.Bespoke;
|
using Jackett.Common.Models.IndexerConfig.Bespoke;
|
||||||
using Jackett.Common.Serializer;
|
using Jackett.Common.Serializer;
|
||||||
using Jackett.Common.Services.Interfaces;
|
using Jackett.Common.Services.Interfaces;
|
||||||
using Jackett.Common.Utils;
|
|
||||||
using Jackett.Common.Utils.Clients;
|
using Jackett.Common.Utils.Clients;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using Newtonsoft.Json.Linq;
|
using Newtonsoft.Json.Linq;
|
||||||
|
@ -288,11 +287,6 @@ namespace Jackett.Common.Indexers.Definitions
|
||||||
MinimumSeedTime = 172800 // 2 days
|
MinimumSeedTime = 172800 // 2 days
|
||||||
};
|
};
|
||||||
|
|
||||||
if (torrent.Imdb.IsNotNullOrWhiteSpace())
|
|
||||||
{
|
|
||||||
release.Imdb = ParseUtil.GetImdbId(torrent.Imdb.TrimEnd('/').Split('/').LastOrDefault()).GetValueOrDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (torrent.Status?.CreatedDate != null &&
|
if (torrent.Status?.CreatedDate != null &&
|
||||||
DateTime.TryParseExact($"{torrent.Status.CreatedDate} +08:00", "yyyy-MM-dd HH:mm:ss zzz", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal, out var publishDate))
|
DateTime.TryParseExact($"{torrent.Status.CreatedDate} +08:00", "yyyy-MM-dd HH:mm:ss zzz", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal, out var publishDate))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue