diff options
| author | Neil Burrows <neil.burrows@nvable.com> | 2020-05-20 09:05:51 +0100 |
|---|---|---|
| committer | Neil Burrows <neil.burrows@nvable.com> | 2020-05-20 09:11:26 +0100 |
| commit | d7b2c2a17626e75ebb202fc9fa1186a88f670eec (patch) | |
| tree | f0e22d06e4963012eac3fa5fd07d66387e4a9da5 /Emby.Server.Implementations/IStartupOptions.cs | |
| parent | b737301c709ba4c2575b2a38ddbba6de96477413 (diff) | |
Renaming variable and refactoring IF statement
Diffstat (limited to 'Emby.Server.Implementations/IStartupOptions.cs')
| -rw-r--r-- | Emby.Server.Implementations/IStartupOptions.cs | 4 |
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; } } } |
