aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Browser
diff options
context:
space:
mode:
authorPatrick Barron <18354464+barronpm@users.noreply.github.com>2020-05-13 19:06:04 +0000
committerGitHub <noreply@github.com>2020-05-13 19:06:04 +0000
commita8f0d0aa0dfe589f4dd5148d0c328bf83271ffb2 (patch)
treefb1d6d677e75aaa3abff0afb6f87d15982fe109f /Emby.Server.Implementations/Browser
parent511d20a100398baca38f24adfabc56f6f3cfac9c (diff)
parentf08830ea00e7111d68f12b001995edc56177f6e4 (diff)
Merge branch 'master' into activitydb-efcore
Diffstat (limited to 'Emby.Server.Implementations/Browser')
-rw-r--r--Emby.Server.Implementations/Browser/BrowserLauncher.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Browser/BrowserLauncher.cs b/Emby.Server.Implementations/Browser/BrowserLauncher.cs
index 96096e142a..7f7c6a0be4 100644
--- a/Emby.Server.Implementations/Browser/BrowserLauncher.cs
+++ b/Emby.Server.Implementations/Browser/BrowserLauncher.cs
@@ -31,18 +31,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);
+ logger?.LogError(ex, "Failed to open browser window with URL {URL}", relativeUrl);
}
}
}