From a7d9a6d7e933dc001290e9c98dd50d2a212e4e58 Mon Sep 17 00:00:00 2001 From: alma Date: Sun, 20 Apr 2025 20:42:10 +0200 Subject: [PATCH] carnet panel contact --- app/carnet/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/carnet/page.tsx b/app/carnet/page.tsx index ea29586e..0ebf6154 100644 --- a/app/carnet/page.tsx +++ b/app/carnet/page.tsx @@ -466,9 +466,10 @@ export default function CarnetPage() { 'Content-Type': 'application/json', }, body: JSON.stringify({ - path, + id: path, + title: vcfFile, content: vcfContent, - mime: 'text/vcard' + folder: 'Contacts' }), }); @@ -526,9 +527,10 @@ export default function CarnetPage() { 'Content-Type': 'application/json', }, body: JSON.stringify({ - path, + id: path, + title: vcfFile, content: vcfContent, - mime: 'text/vcard' + folder: 'Contacts' }) });