diff --git a/src/Controller/TorrentioController.php b/src/Controller/TorrentioController.php
index 963fcf6..c5fb8b3 100644
--- a/src/Controller/TorrentioController.php
+++ b/src/Controller/TorrentioController.php
@@ -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,
]);
- });
+// });
}
}
diff --git a/src/Tmdb/Tmdb.php b/src/Tmdb/Tmdb.php
index cca86fd..d4b964b 100644
--- a/src/Tmdb/Tmdb.php
+++ b/src/Tmdb/Tmdb.php
@@ -241,6 +241,7 @@ class Tmdb
year: (new \DateTime($data['air_date']))->format('Y'),
mediaType: "tvshows",
episodes: null,
+ episodeAirDate: (new \DateTime($data['air_date']))->format('m/d/Y'),
);
}
diff --git a/src/Tmdb/TmdbResult.php b/src/Tmdb/TmdbResult.php
index 2875d8e..bad4fd6 100644
--- a/src/Tmdb/TmdbResult.php
+++ b/src/Tmdb/TmdbResult.php
@@ -13,5 +13,6 @@ class TmdbResult
public ?string $year = "",
public ?string $mediaType = "",
public ?array $episodes = null,
+ public ?string $episodeAirDate = null,
) {}
}
diff --git a/templates/broadcast/Download.stream.html.twig b/templates/broadcast/Download.stream.html.twig
index 0bbd270..8ee5ddb 100644
--- a/templates/broadcast/Download.stream.html.twig
+++ b/templates/broadcast/Download.stream.html.twig
@@ -15,11 +15,7 @@
-
{{ results.media.description }}
- +