diff --git a/dashboard-ui/dashboard.html b/dashboard-ui/dashboard.html
index 40b51a4ca2..9bce7f6945 100644
--- a/dashboard-ui/dashboard.html
+++ b/dashboard-ui/dashboard.html
@@ -15,6 +15,7 @@
Version
+
Media Browser Server is up to date
diff --git a/dashboard-ui/scripts/dashboardpage.js b/dashboard-ui/scripts/dashboardpage.js
index 0a78f4e7c6..85b44693ed 100644
--- a/dashboard-ui/scripts/dashboardpage.js
+++ b/dashboard-ui/scripts/dashboardpage.js
@@ -115,7 +115,7 @@
getClientType: function (connection) {
var clientLowered = connection.Client.toLowerCase();
-
+
if (clientLowered == "dashboard") {
return "
";
@@ -277,6 +277,14 @@
$('#appVersionNumber', page).html(dashboardInfo.SystemInfo.Version);
+ var port = ApiClient.serverPortNumber();
+
+ if (port == dashboardInfo.SystemInfo.WebSocketPortNumber) {
+ $('#ports', page).html('Running on port ' + port + '');
+ } else {
+ $('#ports', page).html('Running on ports ' + port + ' and ' + dashboardInfo.SystemInfo.WebSocketPortNumber + '');
+ }
+
if (dashboardInfo.RunningTasks.filter(function (task) {
return task.Id == dashboardInfo.ApplicationUpdateTaskId;