diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-04-17 14:19:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-17 14:19:49 +0200 |
| commit | b76f570583d607898064e21b6431aa30bffe97f7 (patch) | |
| tree | 4bb3cf6f67108837b4d540166759a561c14d1c6a /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | 7529402cc9cf697915dd703b9d3841bef4b37df9 (diff) | |
| parent | bcf1ef319a228dc6383b1730e8222c1b2294e697 (diff) | |
Merge pull request #2775 from mark-monteiro/upnp-cleanup
Port Forwarding Improvements
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 3107ec242..b5e8d5589 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -15,9 +15,8 @@ namespace MediaBrowser.Model.Configuration private string _baseUrl; /// <summary> - /// Gets or sets a value indicating whether [enable u pn p]. + /// Gets or sets a value indicating whether to enable automatic port forwarding. /// </summary> - /// <value><c>true</c> if [enable u pn p]; otherwise, <c>false</c>.</value> public bool EnableUPnP { get; set; } /// <summary> @@ -254,7 +253,7 @@ namespace MediaBrowser.Model.Configuration AutoRunWebApp = true; EnableRemoteAccess = true; - EnableUPnP = true; + EnableUPnP = false; MinResumePct = 5; MaxResumePct = 90; |
