diff --git a/theme/src/client/components/Posts/VPPostsProfile.vue b/theme/src/client/components/Posts/VPPostsProfile.vue index a73f7412..8645f520 100644 --- a/theme/src/client/components/Posts/VPPostsProfile.vue +++ b/theme/src/client/components/Posts/VPPostsProfile.vue @@ -20,6 +20,8 @@ const imageUrl = computed(() => { return '' if (isLinkHttp(url)) return url + if (url.startsWith('data:image/')) + return url return withBase(url) })