From edcc4f46dc076341d7747af956f41a935564310e Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Thu, 26 Mar 2026 18:18:24 +0100 Subject: [PATCH] fix(fileDrop): don't escape Folder calls Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- apps/files_sharing/src/public-nickname-handler.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/files_sharing/src/public-nickname-handler.ts b/apps/files_sharing/src/public-nickname-handler.ts index 34de82cd4d592..7c03b857b1414 100644 --- a/apps/files_sharing/src/public-nickname-handler.ts +++ b/apps/files_sharing/src/public-nickname-handler.ts @@ -57,14 +57,14 @@ window.addEventListener('DOMContentLoaded', () => { const options = { nickname, - notice: t('files_sharing', 'To upload files to {folder}, you need to provide your name first.', { folder }), + notice: t('files_sharing', 'To upload files to {folder}, you need to provide your name first.', { folder }, { escape: false }), subtitle: undefined as string | undefined, - title: t('files_sharing', 'Upload files to {folder}', { folder }), + title: t('files_sharing', 'Upload files to {folder}', { folder }, { escape: false }), } // If the guest already has a nickname, we just make them double check if (nickname) { - options.notice = t('files_sharing', 'Please confirm your name to upload files to {folder}', { folder }) + options.notice = t('files_sharing', 'Please confirm your name to upload files to {folder}', { folder }, { escape: false }) } // If the account owner set their name as public,