aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.ServerApplication/App.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.ServerApplication/App.xaml.cs')
-rw-r--r--MediaBrowser.ServerApplication/App.xaml.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs
index 1106b7999..f6f05b728 100644
--- a/MediaBrowser.ServerApplication/App.xaml.cs
+++ b/MediaBrowser.ServerApplication/App.xaml.cs
@@ -33,8 +33,8 @@ namespace MediaBrowser.ServerApplication
#region ISingleInstanceApp Members
public bool SignalExternalCommandLineArgs(IList<string> args)
{
- // handle command line arguments of second instance
- // ...
+ OpenDashboard();
+
return true;
}
#endregion
@@ -45,5 +45,9 @@ namespace MediaBrowser.ServerApplication
Kernel.Instance.Dispose();
}
+
+ public static void OpenDashboard()
+ {
+ }
}
}