Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/607f1b07d3a91b707f1b44dc2d4d4a7e584b2f23
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
12 additions and
5 deletions
@ -9,6 +9,11 @@ namespace NzbDrone.Core
{
public static class Fluent
{
private const Decimal ONE_KILOBYTE = 1024 M ;
private const Decimal ONE_MEGABYTE = ONE_KILOBYTE * 1024 M ;
private const Decimal ONE_GIGABYTE = ONE_MEGABYTE * 1024 M ;
private const Decimal ONE_TERABYTE = ONE_GIGABYTE * 1024 M ;
public static string WithDefault ( this string actual , object defaultValue )
{
if ( defaultValue = = null )
@ -107,10 +112,6 @@ namespace NzbDrone.Core
return newText . ToString ( ) ;
}
private const Decimal ONE_KILOBYTE = 1024 M ;
private const Decimal ONE_MEGABYTE = ONE_KILOBYTE * 1024 M ;
private const Decimal ONE_GIGABYTE = ONE_MEGABYTE * 1024 M ;
public static string ToBestFileSize ( this long bytes , int precision = 0 )
{
var ulongBytes = ( ulong ) bytes ;
@ -126,7 +127,13 @@ namespace NzbDrone.Core
string suffix ;
if ( size > ONE_GIGABYTE )
if ( size > ONE_TERABYTE )
{
size / = ONE_TERABYTE ;
suffix = "TB" ;
}
else if ( size > ONE_GIGABYTE )
{
size / = ONE_GIGABYTE ;
suffix = "GB" ;