mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-03 11:49:03 +00:00
Fix copy-paste and not looking error in new cats
This commit is contained in:
@@ -814,7 +814,7 @@ class Categorize extends Category
|
||||
*/
|
||||
public function isTVx265(): bool
|
||||
{
|
||||
if (! preg_match('/(S\d+).*(x265).*(rmteam|MeGusta|HETeam|PSA|ONLY|H4S5S|TrollHD|ImE)/i', $this->releaseName)) {
|
||||
if (preg_match('/(S\d+).*(x265).*(rmteam|MeGusta|HETeam|PSA|ONLY|H4S5S|TrollHD|ImE)/i', $this->releaseName)) {
|
||||
$this->tmpCat = self::TV_X265;
|
||||
|
||||
return true;
|
||||
@@ -992,7 +992,7 @@ class Categorize extends Category
|
||||
*/
|
||||
public function isMovieX265(): bool
|
||||
{
|
||||
if (! preg_match('/(\w+[\.-_\s]+).*(x265).*(Tigole|SESKAPiLE|CHD|IAMABLE|THREESOME|OohLaLa|DEFLATE)/i', $this->releaseName)) {
|
||||
if (preg_match('/(\w+[\.-_\s]+).*(x265).*(Tigole|SESKAPiLE|CHD|IAMABLE|THREESOME|OohLaLa|DEFLATE)/i', $this->releaseName)) {
|
||||
$this->tmpCat = self::MOVIE_X265;
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user