This commit is contained in:
Igor Loskutov
2026-01-09 15:37:15 -05:00
parent 3be7fc0b9a
commit 7ca9cad937
2 changed files with 4 additions and 1 deletions

1
.gitignore vendored
View File

@@ -21,3 +21,4 @@ www/.env.production
.playwright-mcp .playwright-mcp
docs/pnpm-lock.yaml docs/pnpm-lock.yaml
.secrets .secrets
opencode.json

View File

@@ -58,7 +58,9 @@ class DailyClient(VideoPlatformClient):
enable_recording = None enable_recording = None
if room.recording_type == self.RECORDING_LOCAL: if room.recording_type == self.RECORDING_LOCAL:
enable_recording = "local" enable_recording = "local"
elif room.recording_type == self.RECORDING_CLOUD: elif (
room.recording_type == self.RECORDING_CLOUD
): # daily "cloud" is not our "cloud"
enable_recording = "raw-tracks" enable_recording = "raw-tracks"
properties = RoomProperties( properties = RoomProperties(