feat: adds episode air date to results

This commit is contained in:
2025-05-08 23:47:08 -05:00
parent 4eed5fef78
commit 20ade478b1
5 changed files with 11 additions and 11 deletions

View File

@@ -48,12 +48,12 @@ final class TorrentioController extends AbstractController
$input->episode,
);
return $cache->get($cacheId, function (ItemInterface $item) use ($input) {
$item->expiresAt(new \DateTimeImmutable("today 11:59 pm"));
// return $cache->get($cacheId, function (ItemInterface $item) use ($input) {
// $item->expiresAt(new \DateTimeImmutable("today 11:59 pm"));
$results = $this->getTvShowOptionsHandler->handle($input->toCommand());
return $this->render('torrentio/tvshows.html.twig', [
'results' => $results,
]);
});
// });
}
}