Browse Source

Remove unnecessary method in BrowserLauncher

Mark Monteiro 5 years ago
parent
commit
a9c1ff9119
1 changed files with 2 additions and 13 deletions
  1. 2 13
      Emby.Server.Implementations/Browser/BrowserLauncher.cs

+ 2 - 13
Emby.Server.Implementations/Browser/BrowserLauncher.cs

@@ -8,25 +8,14 @@ namespace Emby.Server.Implementations.Browser
     /// </summary>
     public static class BrowserLauncher
     {
-        /// <summary>
-        /// Opens the dashboard page.
-        /// </summary>
-        /// <param name="page">The page.</param>
-        /// <param name="appHost">The app host.</param>
-        private static void OpenDashboardPage(string page, IServerApplicationHost appHost)
-        {
-            var url = appHost.GetLocalApiUrl("localhost") + "/web/" + page;
-
-            OpenUrl(appHost, url);
-        }
-
         /// <summary>
         /// Opens the web client.
         /// </summary>
         /// <param name="appHost">The app host.</param>
         public static void OpenWebApp(IServerApplicationHost appHost)
         {
-            OpenDashboardPage("index.html", appHost);
+            var url = appHost.GetLocalApiUrl("localhost") + "/web/index.html";
+            OpenUrl(appHost, url);
         }
 
         /// <summary>