Reject empty recording downloads and store WebM with correct MIME.
Deploy Ladill Meet / deploy (push) Successful in 31s

Mark legacy zero-byte placeholders as failed, validate files on show/download, and surface upload errors in the meeting room.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-01 17:59:18 +00:00
co-authored by Cursor
parent 827d36ddc1
commit ceb9ca192e
7 changed files with 108 additions and 9 deletions
+7
View File
@@ -55,4 +55,11 @@ class Recording extends Model
{
return $this->status === 'ready';
}
public function hasPlayableFile(): bool
{
return $this->isReady()
&& filled($this->storage_path)
&& (int) ($this->file_size ?? 0) > 0;
}
}