2
0
Эх сурвалжийг харах

Remove unnecessary method in BrowserLauncher

Mark Monteiro 5 жил өмнө
parent
commit
a9c1ff9119

+ 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>