mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(Comment): Initialize childrenCount as integer
Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
parent
01478f1c40
commit
9a63494fe4
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ class Comment implements IComment {
|
|||
'id' => '',
|
||||
'parentId' => '0',
|
||||
'topmostParentId' => '0',
|
||||
'childrenCount' => '0',
|
||||
'childrenCount' => 0,
|
||||
'message' => '',
|
||||
'verb' => '',
|
||||
'actorType' => '',
|
||||
|
|
|
|||
Loading…
Reference in a new issue