Merge pull request #20 from zxyz/peeringdb

fix peeringdb API URL
This commit is contained in:
nidebr 2022-06-01 10:38:10 +02:00 committed by GitHub
commit f7fd6e5ec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ class PeeringDB {
public function __construct() {
global $peeringdb;
$this->url = 'https://peeringdb.com/api';
$this->url = 'https://www.peeringdb.com/api';
}
protected function sendRequest( $url ) {