Compare commits

..

1 Commits

Author SHA1 Message Date
Jonas 47077fe3bd
Merge 537964ee8b into e2c58cd791 2024-12-03 16:58:46 +01:00
1 changed files with 2 additions and 2 deletions

View File

@ -34,8 +34,8 @@ class Restriction extends Entity implements JsonSerializable {
$this->addType('allowRecording', 'boolean'); $this->addType('allowRecording', 'boolean');
} }
public function setGroupName(?string $groupName) { public function setGroupName(string $groupName) {
$this->groupName = $groupName ?? ''; $this->groupName = $groupName;
} }
public function jsonSerialize(): array { public function jsonSerialize(): array {