Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(Comment): Initialize childrenCount as integer
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin authored and backportbot[bot] committed Sep 15, 2024
commit c4a44e1f4eda3e0ef456c62996b9604912bbbc15
2 changes: 1 addition & 1 deletion lib/private/Comments/Comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class Comment implements IComment {
'id' => '',
'parentId' => '0',
'topmostParentId' => '0',
'childrenCount' => '0',
'childrenCount' => 0,
'message' => '',
'verb' => '',
'actorType' => '',
Expand Down