This commit is contained in:
fred 2023-03-14 17:06:22 +01:00
parent 0bfcb61063
commit 1cfaa42905
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ class Fred {
private $gatewayDomain = 'astroport.copylaradio.com';
private $gatewayPort = '';
private $gatewayPort = ''; // :1234
private $gatewayDelay = 5;
@ -21,7 +21,7 @@ class Fred {
$query = 'salt='. urlencode($salt) .'&pepper='. urlencode($pepper) .'&getipns=yes';
$page1 = file_get_contents($this->gatewayProtocol . '://'. $this->gatewayDomain .':' . $this->gatewayPort . '/?' . $query);
$page1 = file_get_contents($this->gatewayProtocol . '://'. $this->gatewayDomain . $this->gatewayPort . '/?' . $query);
if (empty($page1)) {