mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-05-04 17:30:27 -05:00
(Fix) Playlist System 🐛
This commit is contained in:
@@ -45,7 +45,7 @@ class PlaylistController extends Controller
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$playlists = Playlist::with('user')->withCount('torrents')->where('is_private', '=', 0)->orderBy('name', 'ASC')->paginate(25);
|
||||
$playlists = Playlist::with('user')->withCount('torrents')->where('is_private', '=', 0)->orderBy('name', 'ASC')->paginate(24);
|
||||
|
||||
return view('playlist.index', ['playlists' => $playlists]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user