switchroom 0.16.21 → 0.16.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -218,7 +218,9 @@ export function openTurnsDb(agentDir: string): SqliteDatabase {
218
218
  const db = new Database(path, { create: true })
219
219
  applySchema(db)
220
220
  try {
221
- chmodSync(path, 0o600)
221
+ // 0o644 so the switchroom-web container (different UID, same host bind-mount)
222
+ // can read turn history for the Hermes Desktop history panel.
223
+ chmodSync(path, 0o644)
222
224
  } catch {
223
225
  /* ignore — chmod not supported on some FUSE mounts */
224
226
  }