My RPC url doesn't finish by `https://domain.tld/RPC2` but by `https://domain.tld/RPC` We need to fix this code. file: ruTorrent.php ```php public function url($endpoint) { return parent::normaliseurl($this->config->url).$endpoint; } public function getXMLRPCData($method) { ... $res = parent::execute($this->url('RPC2'), $this->attrs, $this->vars); ... } ```