diff --git a/front/src/components/playlist/Card.vue b/front/src/components/playlist/Card.vue index 2d9095141..74c6844f7 100644 --- a/front/src/components/playlist/Card.vue +++ b/front/src/components/playlist/Card.vue @@ -19,7 +19,7 @@ const covers = computed(() => playlist.album_covers ) const profileParams = computed(() => { - const [username, domain] = playlist.user.full_username.split('@') + const [username, domain] = playlist.actor.full_username.split('@') return { username, domain } }) @@ -57,7 +57,7 @@ if (import.meta.env.PROD) { @click.stop="navigate('user')" class="funkwhale link" > - {{ t('vui.by-user', playlist.user.full_username) }} + {{ t('vui.by-user', playlist.actor.full_username) }}