From 11e55d2d2c82ae1071702703e6debd55a3b34811 Mon Sep 17 00:00:00 2001 From: Muhsin Date: Fri, 27 Feb 2026 14:58:37 +0400 Subject: [PATCH] Update Audio.vue --- .../dashboard/components-next/message/bubbles/Audio.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components-next/message/bubbles/Audio.vue b/app/javascript/dashboard/components-next/message/bubbles/Audio.vue index 79d866c09..f556cd3e5 100644 --- a/app/javascript/dashboard/components-next/message/bubbles/Audio.vue +++ b/app/javascript/dashboard/components-next/message/bubbles/Audio.vue @@ -4,6 +4,7 @@ import BaseBubble from './Base.vue'; import AudioChip from 'next/message/chips/Audio.vue'; import Icon from 'next/icon/Icon.vue'; import { useLoadWithRetry } from 'dashboard/composables/loadWithRetry'; +import { timeStampAppendedURL } from 'dashboard/helper/URLHelper'; import { useMessageContext } from '../provider.js'; const { attachments } = useMessageContext(); @@ -18,7 +19,7 @@ const { isLoaded, hasError, loadWithRetry } = useLoadWithRetry({ onMounted(() => { if (attachment.value?.dataUrl) { - loadWithRetry(attachment.value.dataUrl); + loadWithRetry(timeStampAppendedURL(attachment.value.dataUrl)); } });