Skip to content

Commit 72af31e

Browse files
committed
Small fix
1 parent acf4c83 commit 72af31e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Broadcast/Broadcast.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function broadcastCustom(Action $action, ?Filter $filter = null, ?float $
131131
*/
132132
public function getBroadcastProgress(int $id): ?Progress
133133
{
134-
return $this->broadcasts[$id]?->getProgress();
134+
return ($this->broadcasts[$id] ?? null)?->getProgress();
135135
}
136136
/**
137137
* Cancel a running broadcast.

0 commit comments

Comments
 (0)