fix: fixing issues found at launch

This commit is contained in:
2023-12-17 21:43:00 +00:00
parent 3d3029ceb6
commit ebdc50a697
11 changed files with 26 additions and 19 deletions

View File

@@ -38,7 +38,7 @@ class PageController extends Controller
->with('episode')
->with('podcast')
->orderBy('created_at', 'desc')
->limit(50)
->limit(10)
->get();
});
return $artworks;
@@ -53,7 +53,7 @@ class PageController extends Controller
->with('artwork')
->with('artwork.artist')
->orderBy('episode_date', 'desc')
->limit(10)
->limit(5)
->get();
});
return $episodes;