diff --git a/app/Http/Livewire/TorrentSearch.php b/app/Http/Livewire/TorrentSearch.php index 62d59cdd3f..8f4d4fef91 100644 --- a/app/Http/Livewire/TorrentSearch.php +++ b/app/Http/Livewire/TorrentSearch.php @@ -434,7 +434,7 @@ final public function torrents(): \Illuminate\Contracts\Pagination\LengthAwarePa $this->reset('sortField'); } - $isSqlAllowed = ($user->group->is_modo || $user->group->is_editor) && $this->driver === 'sql'; + $isSqlAllowed = (($user->group->is_modo || $user->group->is_editor) && $this->driver === 'sql') || $this->description || $this->mediainfo; $eagerLoads = fn (Builder $query) => $query ->with(['user:id,username,group_id', 'user.group', 'category', 'type', 'resolution'])