Enable Play To by default

This commit is contained in:
Luke Pulverenti 2014-03-15 21:41:27 -04:00
parent bf30936550
commit 4e6d306d00

View File

@ -5,5 +5,10 @@ namespace MediaBrowser.Model.Configuration
{
public bool EnablePlayTo { get; set; }
public bool EnablePlayToDebugLogging { get; set; }
public DlnaOptions()
{
EnablePlayTo = true;
}
}
}