We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d5ad23 commit 1587ab4Copy full SHA for 1587ab4
plugins/rutracker_check/trackers/nnmclub.php
@@ -7,7 +7,7 @@ static public function download_torrent($url, $hash, $old_torrent)
7
if (preg_match('`^https?://(nnm-club|nnmclub)\.(ru|me|to|name|tv)/forum/viewtopic\.php\?p=(?P<id>\d+)$`', $url, $matches)) {
8
$client = ruTrackerChecker::makeClient("https://nnmclub.to/forum/viewtopic.php?p=".$matches["id"]);
9
if ($client->status != 200) return ruTrackerChecker::STE_CANT_REACH_TRACKER;
10
- if (preg_match('`btih:(?P<hash>[0-9A-Fa-f]{40})&tr`', $client->results, $matches)) {
+ if (preg_match('`btih:(?P<hash>[0-9A-Fa-f]{40})`', $client->results, $matches)) {
11
if (strtoupper($matches["hash"])==$hash) {
12
return ruTrackerChecker::STE_UPTODATE;
13
}
0 commit comments