mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-25 15:33:11 +00:00
parent
9e00da4d2a
commit
e3d47cddaa
1 changed files with 2 additions and 2 deletions
|
@ -74,14 +74,14 @@ namespace NzbDrone.Core.Configuration
|
|||
|
||||
public String SabHost
|
||||
{
|
||||
get { return GetValue("SabHost"); }
|
||||
get { return GetValue("SabHost", "localhost"); }
|
||||
|
||||
set { SetValue("SabHost", value); }
|
||||
}
|
||||
|
||||
public int SabPort
|
||||
{
|
||||
get { return GetValueInt("SabPort"); }
|
||||
get { return GetValueInt("SabPort", 8080); }
|
||||
|
||||
set { SetValue("SabPort", value); }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue