Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/e639b3628323d0e75cee510f282584acfed6a566 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Indexer flags for torrent release pushes

(cherry picked from commit 47ba002806fe2c2004a649aa193ae318343a84e4)
pull/3450/head
Bogdan 11 months ago
parent c9f4fb141f
commit e639b36283

@ -128,7 +128,8 @@ namespace Readarr.Api.V1.Indexers
MagnetUrl = resource.MagnetUrl,
InfoHash = resource.InfoHash,
Seeders = resource.Seeders,
Peers = (resource.Seeders.HasValue && resource.Leechers.HasValue) ? (resource.Seeders + resource.Leechers) : null
Peers = (resource.Seeders.HasValue && resource.Leechers.HasValue) ? (resource.Seeders + resource.Leechers) : null,
IndexerFlags = (IndexerFlags)resource.IndexerFlags
};
}
else

Loading…
Cancel
Save