fix(server): prepend 'mux_' to UUID in muxFilename method for consistent naming

This commit is contained in:
Andras Bacsai
2025-06-28 13:56:57 +02:00
parent bbc3d69000
commit 0f876db6c8

View File

@@ -887,7 +887,7 @@ $schema://$host {
public function muxFilename() public function muxFilename()
{ {
return $this->uuid; return 'mux_'.$this->uuid;
} }
public function team() public function team()