No need for data

This commit is contained in:
Michel Roux 2023-08-29 08:53:15 +02:00
parent 5683d353bb
commit bd40393aeb
2 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ class PodcastController extends Controller
$podcast = $this->podcastDataReader->tryGetCachedPodcastData($url);
if ($podcast) {
return new JSONResponse(['data' => $podcast]);
return new JSONResponse($podcast);
}
$client = $this->clientService->newClient();
@ -43,6 +43,6 @@ class PodcastController extends Controller
$podcast = PodcastData::parseRssXml((string) $feed->getBody());
$this->podcastDataReader->trySetCachedPodcastData($url, $podcast);
return new JSONResponse(['data' => $podcast], $statusCode);
return new JSONResponse($podcast, $statusCode);
}
}

View File

@ -49,7 +49,7 @@ export default {
async mounted() {
try {
const podcastData = await axios.get(generateUrl('/apps/repod/podcast?url={url}', { url: this.url }))
this.feed = podcastData.data.data
this.feed = podcastData.data
} catch (e) {
this.failed = true
console.error(e)