Skip to content

Commit

Permalink
Merge pull request #5439 from nextcloud/backport/5354/stable26
Browse files Browse the repository at this point in the history
[stable26] fix: allow null label colors in trello json importer
  • Loading branch information
juliushaertl committed Jan 9, 2024
2 parents c807fcf + cea6674 commit 497d06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/Importer/Systems/TrelloJsonService.php
Expand Up @@ -332,7 +332,7 @@ public function getAclList(): array {
return $return;
}

private function translateColor(string $color): string {
private function translateColor(?string $color): string {
switch ($color) {
case 'red':
return 'ff0000';
Expand Down

0 comments on commit 497d06c

Please sign in to comment.