No need for data
This commit is contained in:
parent
5683d353bb
commit
bd40393aeb
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user