Skip to content

Commit

Permalink
fix: set log title for v12
Browse files Browse the repository at this point in the history
  • Loading branch information
maikschneider committed Sep 6, 2023
1 parent 43dc196 commit 4bedc6e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Classes/Domain/Model/Dto/ListItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public static function createFromV12Log(array $sysLogRow): static
$item = new static();
$item->log = $sysLogRow;
$item->log['log_data'] = json_decode($item->log['log_data'], true);
$item->log['title'] = $item->log['log_data']['title'] ?? '';
return $item;
}

Expand Down

0 comments on commit 4bedc6e

Please sign in to comment.