[T411] Fix URI

This commit is contained in:
Alexis CHEMEL 2016-12-05 23:21:14 +01:00
parent 89d179ada4
commit ad8a20ee46

View File

@ -25,7 +25,7 @@ class T411Bridge extends BridgeAbstract {
}
//Retrieve torrent listing from search results, which does not contain torrent description
$url = self::URI.'torrents/search/?'.urlencode($this->getInput('search')).'&order=added&type=desc';
$url = self::URI.'torrents/search/?search='.urlencode($this->getInput('search')).'&order=added&type=desc';
$html = getSimpleHTMLDOM($url)
or returnServerError('Could not request t411: '.$url);