aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IStartupOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
-rw-r--r--Emby.Server.Implementations/IStartupOptions.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IStartupOptions.cs b/Emby.Server.Implementations/IStartupOptions.cs
index a3a047057..5d22bfddc 100644
--- a/Emby.Server.Implementations/IStartupOptions.cs
+++ b/Emby.Server.Implementations/IStartupOptions.cs
@@ -1,3 +1,5 @@
+using System;
+
namespace Emby.Server.Implementations
{
public interface IStartupOptions
@@ -40,6 +42,6 @@ namespace Emby.Server.Implementations
/// <summary>
/// Gets the value of the --auto-discover-publish-url command line option.
/// </summary>
- string AutoDiscoverPublishUrl { get; }
+ Uri PublishedServerUrl { get; }
}
}