diff --git a/front/src/components/audio/podcast/Row.vue b/front/src/components/audio/podcast/Row.vue index e01735eaa..2fc5cffc3 100644 --- a/front/src/components/audio/podcast/Row.vue +++ b/front/src/components/audio/podcast/Row.vue @@ -53,7 +53,7 @@ const { activateTrack } = usePlayOptions(props) const fetchData = async () => { try { const response = await axios.get(`tracks/${props.track.id}/`) - description.value = response.data.description.text + description.value = response.data.description?.text ?? '' } catch (error) { useErrorHandler(error as Error) }