fix: ensure attachment size is formatted as string for compatibility with Bitwarden clients

This commit is contained in:
shuaiplus
2026-02-23 14:07:11 +08:00
parent a3f074f38a
commit c44436a5fd
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -11,7 +11,8 @@ export function formatAttachments(attachments: Attachment[]): any[] | null {
return attachments.map(a => ({
id: a.id,
fileName: a.fileName,
size: Number(a.size) || 0, // Android expects Int, not String
// Bitwarden clients decode attachment size as string in cipher payloads.
size: String(Number(a.size) || 0),
sizeName: a.sizeName,
key: a.key,
url: `/api/ciphers/${a.cipherId}/attachment/${a.id}`, // Android requires non-null url!