diff --git a/src/Jackett.Common/Indexers/DivxTotal.cs b/src/Jackett.Common/Indexers/DivxTotal.cs index 3a14b4a08..455f6f013 100644 --- a/src/Jackett.Common/Indexers/DivxTotal.cs +++ b/src/Jackett.Common/Indexers/DivxTotal.cs @@ -44,8 +44,8 @@ namespace Jackett.Common.Indexers { public static long Peliculas => 2147483648; // 2 GB public static long PeliculasDvdr => 5368709120; // 5 GB - public static long Series => 524288000; // 500 MB - public static long Otros => 524288000; // 500 MB + public static long Series => 536870912; // 512 MB + public static long Otros => 536870912; // 512 MB } public override string[] LegacySiteLinks { get; protected set; } = { diff --git a/src/Jackett.Common/Indexers/MejorTorrent.cs b/src/Jackett.Common/Indexers/MejorTorrent.cs index 959944372..e54097709 100644 --- a/src/Jackett.Common/Indexers/MejorTorrent.cs +++ b/src/Jackett.Common/Indexers/MejorTorrent.cs @@ -333,9 +333,9 @@ namespace Jackett.Common.Indexers continue; // guess size - var size = 524288000L; // 500 MB + var size = 536870912L; // 512 MB if (episodeTitle.ToLower().Contains("720p")) - size = 1288490188L; // 1.2 GB + size = 1073741824L; // 1 GB var release = GenerateRelease(episodeTitle, detailsStr, downloadLink, cat, episodePublish, size); releases.Add(release);