aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Browser
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Server.Implementations/Browser')
-rw-r--r--Emby.Server.Implementations/Browser/BrowserLauncher.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/Browser/BrowserLauncher.cs b/Emby.Server.Implementations/Browser/BrowserLauncher.cs
index e706401fd..f8108d1c2 100644
--- a/Emby.Server.Implementations/Browser/BrowserLauncher.cs
+++ b/Emby.Server.Implementations/Browser/BrowserLauncher.cs
@@ -33,18 +33,18 @@ namespace Emby.Server.Implementations.Browser
/// Opens the specified URL in an external browser window. Any exceptions will be logged, but ignored.
/// </summary>
/// <param name="appHost">The application host.</param>
- /// <param name="url">The URL.</param>
- private static void TryOpenUrl(IServerApplicationHost appHost, string url)
+ /// <param name="relativeUrl">The URL to open, relative to the server base URL.</param>
+ private static void TryOpenUrl(IServerApplicationHost appHost, string relativeUrl)
{
try
{
string baseUrl = appHost.GetLocalApiUrl("localhost");
- appHost.LaunchUrl(baseUrl + url);
+ appHost.LaunchUrl(baseUrl + relativeUrl);
}
catch (Exception ex)
{
- var logger = appHost.Resolve<ILogger>();
- logger?.LogError(ex, "Failed to open browser window with URL {URL}", url);
+ var logger = appHost.Resolve<ILogger<IServerApplicationHost>>();
+ logger?.LogError(ex, "Failed to open browser window with URL {URL}", relativeUrl);
}
}
}