aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ApplicationHost.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2021-02-27 13:56:21 +0000
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2021-02-27 13:56:21 +0000
commita25e3c02568b5632278e23d6168efa927b29eda9 (patch)
treeb8c564138001cba1ae70f6e8acf057e8bf79a68f /Emby.Server.Implementations/ApplicationHost.cs
parent0d3606a7466d55d217e1dffc0539cfa1c189eb7d (diff)
fix for override ports contained in PublishedServerUrl
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
-rw-r--r--Emby.Server.Implementations/ApplicationHost.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 1b9bb86bb..604f69986 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -135,6 +135,11 @@ namespace Emby.Server.Implementations
public bool CoreStartupHasCompleted { get; private set; }
+ /// <summary>
+ /// Gets a value indicating whether this instance has a custom published url.
+ /// </summary>
+ public Uri PublishedServerUrl => _startupOptions.PublishedServerUrl;
+
public virtual bool CanLaunchWebBrowser
{
get
@@ -1141,6 +1146,11 @@ namespace Emby.Server.Implementations
/// <inheritdoc/>
public bool ListenWithHttps => Certificate != null && ServerConfigurationManager.GetNetworkConfiguration().EnableHttps;
+ public string GetStartupOption(string propName)
+ {
+ return _startupOptions.GetType().GetProperty(propName).GetValue(src, null);
+ }
+
/// <inheritdoc/>
public string GetSmartApiUrl(IPAddress ipAddress, int? port = null)
{