diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-01 23:17:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-01 23:17:10 -0400 |
| commit | 7736c8cefc3093d1edcd056f5e89fdb1cdca926f (patch) | |
| tree | 85b64b9c0caef664e8236a8637f32089e5686879 /MediaBrowser.ServerApplication/ApplicationHost.cs | |
| parent | 5b280de5196a382b3651c7073cf5e76ae7e6e761 (diff) | |
display program data path and bookmark in the dashboard
Diffstat (limited to 'MediaBrowser.ServerApplication/ApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/ApplicationHost.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs index eba92a57d..17ee2d597 100644 --- a/MediaBrowser.ServerApplication/ApplicationHost.cs +++ b/MediaBrowser.ServerApplication/ApplicationHost.cs @@ -191,7 +191,7 @@ namespace MediaBrowser.ServerApplication { base.OnLoggerLoaded(); - _httpServerCreationTask = Task.Run(() => ServerFactory.CreateServer(this, LogManager, "Media Browser", "index.html")); + _httpServerCreationTask = Task.Run(() => ServerFactory.CreateServer(this, LogManager, "Media Browser", "dashboard/index.html")); } /// <summary> @@ -516,7 +516,8 @@ namespace MediaBrowser.ServerApplication FailedPluginAssemblies = FailedAssemblies.ToArray(), InProgressInstallations = InstallationManager.CurrentInstallations.Select(i => i.Item1).ToArray(), CompletedInstallations = InstallationManager.CompletedInstallations.ToArray(), - Id = _systemId + Id = _systemId, + ProgramDataPath = ApplicationPaths.ProgramDataPath }; } |
