Merge pull request #4831 from nextcloud/backport/4816/stable27

This commit is contained in:
Julius Härtl
2023-06-20 11:15:39 +02:00
committed by GitHub

View File

@@ -143,11 +143,13 @@ class BoardImportService {
} }
/** /**
* @param mixed $system * @param ?string $system
* @return self * @return self
*/ */
public function setSystem($system): self { public function setSystem($system): self {
$this->system = $system; if ($system) {
$this->system = $system;
}
return $this; return $this;
} }