mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
fix directory browser in startup wizard
This commit is contained in:
parent
890510346a
commit
16e4d4599a
3 changed files with 11 additions and 9 deletions
|
@ -178,7 +178,8 @@ namespace MediaBrowser.Api.System
|
||||||
ServerName = result.ServerName,
|
ServerName = result.ServerName,
|
||||||
Version = result.Version,
|
Version = result.Version,
|
||||||
LocalAddress = result.LocalAddress,
|
LocalAddress = result.LocalAddress,
|
||||||
WanAddress = result.WanAddress
|
WanAddress = result.WanAddress,
|
||||||
|
OperatingSystem = result.OperatingSystem
|
||||||
};
|
};
|
||||||
|
|
||||||
return ToOptimizedResult(publicInfo);
|
return ToOptimizedResult(publicInfo);
|
||||||
|
|
|
@ -26,6 +26,12 @@ namespace MediaBrowser.Model.System
|
||||||
/// <value>The version.</value>
|
/// <value>The version.</value>
|
||||||
public string Version { get; set; }
|
public string Version { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the operating sytem.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The operating sytem.</value>
|
||||||
|
public string OperatingSystem { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the id.
|
/// Gets or sets the id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -8,11 +8,6 @@ namespace MediaBrowser.Model.System
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class SystemInfo : PublicSystemInfo
|
public class SystemInfo : PublicSystemInfo
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// Gets or sets the operating sytem.
|
|
||||||
/// </summary>
|
|
||||||
/// <value>The operating sytem.</value>
|
|
||||||
public string OperatingSystem { get; set; }
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the display name of the operating system.
|
/// Gets or sets the display name of the operating system.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -30,7 +25,7 @@ namespace MediaBrowser.Model.System
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value><c>true</c> if [supports running as service]; otherwise, <c>false</c>.</value>
|
/// <value><c>true</c> if [supports running as service]; otherwise, <c>false</c>.</value>
|
||||||
public bool SupportsRunningAsService { get; set; }
|
public bool SupportsRunningAsService { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the mac address.
|
/// Gets or sets the mac address.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -108,7 +103,7 @@ namespace MediaBrowser.Model.System
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The cache path.</value>
|
/// <value>The cache path.</value>
|
||||||
public string CachePath { get; set; }
|
public string CachePath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the log path.
|
/// Gets or sets the log path.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -120,7 +115,7 @@ namespace MediaBrowser.Model.System
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The internal metadata path.</value>
|
/// <value>The internal metadata path.</value>
|
||||||
public string InternalMetadataPath { get; set; }
|
public string InternalMetadataPath { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the transcoding temporary path.
|
/// Gets or sets the transcoding temporary path.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue