mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
Cleanup some small things
This commit is contained in:
@@ -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>
|
||||
@@ -75,7 +73,6 @@ namespace Emby.Server.Implementations.HttpServer
|
||||
Headers["Accept-Ranges"] = "bytes";
|
||||
StatusCode = HttpStatusCode.PartialContent;
|
||||
|
||||
Cookies = new List<Cookie>();
|
||||
SetRangeValues(contentLength);
|
||||
}
|
||||
|
||||
@@ -223,7 +220,5 @@ namespace Emby.Server.Implementations.HttpServer
|
||||
get { return (HttpStatusCode)Status; }
|
||||
set { Status = (int)value; }
|
||||
}
|
||||
|
||||
public string StatusDescription { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user