diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-15 21:41:27 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-15 21:41:27 -0400 |
| commit | 4e6d306d0021cda1e909da2647b803ea7d505d4a (patch) | |
| tree | e553cfb9e9387497fc24e2996f869b3f219009dd | |
| parent | bf30936550a0b9be69e646a1b27988914ce9ec4a (diff) | |
Enable Play To by default
| -rw-r--r-- | MediaBrowser.Model/Configuration/DlnaOptions.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/DlnaOptions.cs b/MediaBrowser.Model/Configuration/DlnaOptions.cs index 67145e664..b2503ebc7 100644 --- a/MediaBrowser.Model/Configuration/DlnaOptions.cs +++ b/MediaBrowser.Model/Configuration/DlnaOptions.cs @@ -5,5 +5,10 @@ namespace MediaBrowser.Model.Configuration { public bool EnablePlayTo { get; set; } public bool EnablePlayToDebugLogging { get; set; } + + public DlnaOptions() + { + EnablePlayTo = true; + } } } |
