Remove XXX covers processing and related code

This commit is contained in:
DariusIII
2026-02-13 15:27:28 +01:00
parent 2f3824c53a
commit ce10c0b7be
52 changed files with 175 additions and 7549 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class CoverController extends Controller
public function show(string $type, string $filename)
{
// Validate cover type
$validTypes = ['anime', 'audio', 'audiosample', 'book', 'console', 'games', 'movies', 'music', 'preview', 'sample', 'tvrage', 'video', 'xxx', 'tvshows'];
$validTypes = ['anime', 'audio', 'audiosample', 'book', 'console', 'games', 'movies', 'music', 'preview', 'sample', 'tvrage', 'video', 'tvshows'];
if (! in_array($type, $validTypes)) {
abort(404);