mirror of
https://github.com/Jackett/Jackett
synced 2025-03-12 15:14:50 +00:00
mejortorrent: cant use 100.Megabytes() with a constant. switched to var
This commit is contained in:
parent
739bce9257
commit
db326cda99
1 changed files with 1 additions and 2 deletions
|
@ -286,8 +286,7 @@ namespace Jackett.Common.Indexers
|
|||
await ParseMovieRelease(releases, query, title, detailsStr, cat, publishDate, quality);
|
||||
else
|
||||
{
|
||||
const long size = 100.Megabytes();
|
||||
var release = GenerateRelease(title, detailsStr, detailsStr, cat, publishDate, size);
|
||||
var release = GenerateRelease(title, detailsStr, detailsStr, cat, publishDate, 100.Megabytes());
|
||||
releases.Add(release);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue