From 141b0ff55f2919d1c30cae0e75a7f30d6e2b9f26 Mon Sep 17 00:00:00 2001 From: malle-pietje Date: Wed, 18 Oct 2017 08:35:11 +0200 Subject: [PATCH] fixed typo in list_known_rogueaps() --- src/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index b8d7ec2..e0a75dc 100755 --- a/src/Client.php +++ b/src/Client.php @@ -803,7 +803,7 @@ class Client public function list_known_rogueaps() { if (!$this->is_loggedin) return false; - $response = $this->exec_curl('/api/s/'.$this->site.'/stat/rogueknown'); + $response = $this->exec_curl('/api/s/'.$this->site.'/rest/rogueknown'); return $this->process_response($response); }