Don't use streaming port in UrlToIndex because xmlHttpRequest won't send cookies to a different port

pull/2545/head
Isaac Connor 2019-03-01 17:25:17 -05:00
parent 520bd4e7a7
commit 7703661cb1
1 changed files with 2 additions and 1 deletions

View File

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