fixed typo in list_known_rogueaps()

This commit is contained in:
malle-pietje
2017-10-18 08:35:11 +02:00
parent e6ffb2e5de
commit 141b0ff55f

View File

@@ -803,7 +803,7 @@ class Client
public function list_known_rogueaps() public function list_known_rogueaps()
{ {
if (!$this->is_loggedin) return false; 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); return $this->process_response($response);
} }