From c66902fb96539a28ae02eb8328c27c20e79cfed8 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 26 Dec 2025 13:03:51 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/server/src/services/certificate.ts | 56 ++++++++++----------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/packages/server/src/services/certificate.ts b/packages/server/src/services/certificate.ts index bf9c3aeee..2e1699b28 100644 --- a/packages/server/src/services/certificate.ts +++ b/packages/server/src/services/certificate.ts @@ -128,37 +128,37 @@ const createCertificateFiles = async (certificate: Certificate) => { }; export const updateCertificate = async ( - certificateId: string, - updates: { - name?: string; - certificateData?: string; - privateKey?: string; - autoRenew?: boolean; - }, + certificateId: string, + updates: { + name?: string; + certificateData?: string; + privateKey?: string; + autoRenew?: boolean; + }, ) => { - const existing = await findCertificateById(certificateId); + const existing = await findCertificateById(certificateId); - const updated = await db - .update(certificates) - .set({ - ...updates, - }) - .where(eq(certificates.certificateId, certificateId)) - .returning(); + const updated = await db + .update(certificates) + .set({ + ...updates, + }) + .where(eq(certificates.certificateId, certificateId)) + .returning(); - if (!updated || updated[0] === undefined) { - throw new TRPCError({ - code: "BAD_REQUEST", - message: "Failed to update the certificate", - }); - } + if (!updated || updated[0] === undefined) { + throw new TRPCError({ + code: "BAD_REQUEST", + message: "Failed to update the certificate", + }); + } - const cert = updated[0]; + const cert = updated[0]; - // If cert data or private key changed, rewrite files - if (updates.certificateData || updates.privateKey) { - await createCertificateFiles(cert); - } + // If cert data or private key changed, rewrite files + if (updates.certificateData || updates.privateKey) { + await createCertificateFiles(cert); + } - return cert; -}; \ No newline at end of file + return cert; +};