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

Don't die in MonoTorrent if nodes is an empty string.

pull/1158/merge
Taloth Saldono 9 years ago
parent 949d8bf49b
commit 3bc6bf9e99

@ -774,7 +774,8 @@ namespace MonoTorrent
break;
case ("nodes"):
this.nodes = (BEncodedList)keypair.Value;
if (keypair.Value.ToString().Length != 0)
this.nodes = (BEncodedList)keypair.Value;
break;
case ("comment.utf-8"):

Loading…
Cancel
Save