mirror of https://github.com/Jackett/Jackett
ReleaseInfo: ignore Origin during JSON serialization
This commit is contained in:
parent
157b042c0a
commit
6a4f6e3638
|
@ -3,6 +3,7 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Jackett.Indexers;
|
using Jackett.Indexers;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace Jackett.Models
|
namespace Jackett.Models
|
||||||
{
|
{
|
||||||
|
@ -32,6 +33,7 @@ namespace Jackett.Models
|
||||||
public long? MinimumSeedTime { get; set; }
|
public long? MinimumSeedTime { get; set; }
|
||||||
public double? DownloadVolumeFactor { get; set; }
|
public double? DownloadVolumeFactor { get; set; }
|
||||||
public double? UploadVolumeFactor { get; set; }
|
public double? UploadVolumeFactor { get; set; }
|
||||||
|
[JsonIgnore] // don't export the Origin to the manul search API, otherwise each result line contains a full recursive indexer JSON structure
|
||||||
public IIndexer Origin;
|
public IIndexer Origin;
|
||||||
|
|
||||||
public double? Gain
|
public double? Gain
|
||||||
|
|
Loading…
Reference in New Issue