Remove underscore prefix for image filenames

This commit is contained in:
v2lmmj04
2025-01-05 14:51:37 -08:00
committed by GitHub
parent 52619b1a9b
commit b281052908

View File

@@ -102,7 +102,7 @@ export async function updateLastCard(imageData: string | null | undefined, sente
id,
fields,
picture: {
filename: `_${id}.webp`,
filename: `${id}.webp`,
data: imageData.split(';base64,')[1],
fields: [pictureField],
},