From 7703661cb15f6d35defbf6069203aeb21dd4a7df Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Fri, 1 Mar 2019 17:25:17 -0500 Subject: [PATCH] Don't use streaming port in UrlToIndex because xmlHttpRequest won't send cookies to a different port --- web/includes/Monitor.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/includes/Monitor.php b/web/includes/Monitor.php index 229d4b3db..848bef12b 100644 --- a/web/includes/Monitor.php +++ b/web/includes/Monitor.php @@ -634,7 +634,8 @@ private $control_fields = array( } // end function Source public function UrlToIndex() { - return $this->Server()->UrlToIndex(ZM_MIN_STREAMING_PORT ? (ZM_MIN_STREAMING_PORT+$this->Id()) : null); + return $this->Server()->UrlToIndex(); + //ZM_MIN_STREAMING_PORT ? (ZM_MIN_STREAMING_PORT+$this->Id()) : null); } } // end class Monitor