diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-18 17:04:01 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-18 17:04:01 +0100 |
| commit | d116efe1f78c1ad1aa69221b3092800348d23503 (patch) | |
| tree | 58670996079d97ce83db201ae85800b377337957 /Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs | |
| parent | c1f76eb8ab2c4fe536a9b612d659bf739f0cc7ac (diff) | |
| parent | 440350a3f649b648f43a1d531153cc2c68edbee5 (diff) | |
Merge branch 'dev' into reformat
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs')
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs b/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs index bb52cd705..891a76ec2 100644 --- a/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs +++ b/Emby.Server.Implementations/HttpServer/RangeRequestWriter.cs @@ -40,8 +40,6 @@ namespace Emby.Server.Implementations.HttpServer /// </summary> private static readonly CultureInfo UsCulture = new CultureInfo("en-US"); - public List<Cookie> Cookies { get; private set; } - /// <summary> /// Additional HTTP Headers /// </summary> @@ -72,7 +70,6 @@ namespace Emby.Server.Implementations.HttpServer Headers["Accept-Ranges"] = "bytes"; StatusCode = HttpStatusCode.PartialContent; - Cookies = new List<Cookie>(); SetRangeValues(contentLength); } @@ -220,7 +217,5 @@ namespace Emby.Server.Implementations.HttpServer get => (HttpStatusCode)Status; set => Status = (int)value; } - - public string StatusDescription { get; set; } } } |
