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'`, );