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

Fixed: Ignore empty tags when adding items to Flood

(cherry picked from commit 0a5200766ea80fc1c97bfa497cdfed31b9af687f)
pull/3134/head
Bogdan 1 year ago
parent 0f4bd3c472
commit 5937c952af

@ -70,7 +70,7 @@ namespace NzbDrone.Core.Download.Clients.Flood
}
}
return result;
return result.Where(t => t.IsNotNullOrWhiteSpace());
}
public override string Name => "Flood";

Loading…
Cancel
Save