Skip to content

Commit

Permalink
Merge pull request #1121 from HDInnovations/analysis-nNK7Vv
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
HDVinnie authored Feb 8, 2020
2 parents 6dea3b5 + 52e2802 commit 2f30a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/API/TorrentController.php
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public function filter(Request $request, Torrent $torrent)
$torrent->where('torrents.seeders', '=', $dead);
}

if ($request->has('reseed') && $request->input('reseed') != null) {
if ($request->has('reseed') && $request->input('reseed') != null) {
$torrent->where('torrents.seeders', '=', 0)->where('torrents.leechers', '>=', 1);
}

Expand Down

0 comments on commit 2f30a3e

Please sign in to comment.