mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-04 09:20:21 -05:00
fix: meilisearch torrent search incomplete filter
This commit is contained in:
@@ -400,14 +400,15 @@ class TorrentSearch extends Component
|
||||
default => null,
|
||||
},
|
||||
userSeeder: match (true) {
|
||||
$this->seeding => true,
|
||||
$this->leeching => false,
|
||||
default => null,
|
||||
$this->seeding => true,
|
||||
$this->leeching, $this->incomplete => false,
|
||||
default => null,
|
||||
},
|
||||
userActive: match (true) {
|
||||
$this->seeding => true,
|
||||
$this->leeching => true,
|
||||
default => null,
|
||||
$this->seeding => true,
|
||||
$this->leeching => true,
|
||||
$this->incomplete => false,
|
||||
default => null,
|
||||
},
|
||||
));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user