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

Fixed: (FileList) Parsing poorly padded IMDb Ids

pull/2147/head
Bogdan 10 months ago
parent f5790bec2e
commit 4c4b16d234

@ -61,7 +61,7 @@ public class FileListParser : IParseIndexerResponse
var imdbId = 0;
if (row.ImdbId is { Length: > 2 })
{
imdbId = int.Parse(row.ImdbId.Substring(2));
int.TryParse(row.ImdbId.TrimStart('t'), out imdbId);
}
var downloadVolumeFactor = row.FreeLeech ? 0 : 1;

Loading…
Cancel
Save