From 72e23a910933e13a93c4a776b176918062d2479a Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Sun, 9 Nov 2025 08:55:58 +0000 Subject: [PATCH] style: fix code formatting in CapacitorPlatformService - Split long condition across multiple lines for better readability - Applied by ESLint auto-fix --- src/services/platforms/CapacitorPlatformService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/services/platforms/CapacitorPlatformService.ts b/src/services/platforms/CapacitorPlatformService.ts index f7e0784a..052282ae 100644 --- a/src/services/platforms/CapacitorPlatformService.ts +++ b/src/services/platforms/CapacitorPlatformService.ts @@ -323,7 +323,10 @@ export class CapacitorPlatformService const openMsg = openErr instanceof Error ? openErr.message : String(openErr); // If open fails on a newly created connection, treat as "already exists" case - if (openMsg.includes("does not exist") || openMsg.includes("already exists")) { + if ( + openMsg.includes("does not exist") || + openMsg.includes("already exists") + ) { this.connLog( `create succeeded but open() failed: ${openMsg} → treating as 'already exists'`, );