1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

removed default for Sab

This commit is contained in:
kayone 2013-11-30 19:27:33 -08:00
parent 150b14aaeb
commit 9339b98d1e

View File

@ -74,14 +74,14 @@ public void SaveValues(Dictionary<string, object> configValues)
public String SabHost
{
get { return GetValue("SabHost", "localhost"); }
get { return GetValue("SabHost"); }
set { SetValue("SabHost", value); }
}
public int SabPort
{
get { return GetValueInt("SabPort", 8080); }
get { return GetValueInt("SabPort"); }
set { SetValue("SabPort", value); }
}