diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-08-15 01:00:33 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-15 01:00:33 -0700 |
| commit | 685e9e4f58c2e00a0157098a2309b2cb97cb2f14 (patch) | |
| tree | f931aa410d09e57a7903b709d56c012e4da9b92e /Emby.Dlna | |
| parent | 535e0d25538a7f19d927d96e3fd4fba553ed83f4 (diff) | |
| parent | 72436892154892c53c75ee5fdcbcb3bf843ac85c (diff) | |
Merge pull request #1584 from Bond-009/checksum
Check checksum for plugin downloads
Diffstat (limited to 'Emby.Dlna')
| -rw-r--r-- | Emby.Dlna/PlayTo/SsdpHttpClient.cs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Emby.Dlna/PlayTo/SsdpHttpClient.cs b/Emby.Dlna/PlayTo/SsdpHttpClient.cs index 22aaa6885..217ea3a4b 100644 --- a/Emby.Dlna/PlayTo/SsdpHttpClient.cs +++ b/Emby.Dlna/PlayTo/SsdpHttpClient.cs @@ -73,9 +73,6 @@ namespace Emby.Dlna.PlayTo UserAgent = USERAGENT, LogErrorResponseBody = true, BufferContent = false, - - // The periodic requests may keep some devices awake - LogRequestAsDebug = true }; options.RequestHeaders["HOST"] = ip + ":" + port.ToString(_usCulture); @@ -98,9 +95,6 @@ namespace Emby.Dlna.PlayTo LogErrorResponseBody = true, BufferContent = false, - // The periodic requests may keep some devices awake - LogRequestAsDebug = true, - CancellationToken = cancellationToken }; @@ -135,13 +129,9 @@ namespace Emby.Dlna.PlayTo { Url = url, UserAgent = USERAGENT, - LogRequest = logRequest || _config.GetDlnaConfiguration().EnableDebugLog, LogErrorResponseBody = true, BufferContent = false, - // The periodic requests may keep some devices awake - LogRequestAsDebug = true, - CancellationToken = cancellationToken }; |
