diff options
author | provokateurin <kate@provokateurin.de> | 2024-09-15 15:23:10 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2024-09-15 15:44:37 +0200 |
commit | 9a63494fe46ce44bce650f383c25e88da4e5505c (patch) | |
tree | af4eb79585838a5f07d610f8c0bfd9658c734caf /lib | |
parent | 01478f1c406cdbed7e5f6a52c0ebed040405ff29 (diff) | |
download | nextcloud-server-9a63494fe46ce44bce650f383c25e88da4e5505c.tar.gz nextcloud-server-9a63494fe46ce44bce650f383c25e88da4e5505c.zip |
fix(Comment): Initialize childrenCount as integerfix/comment/children-count-integer
Signed-off-by: provokateurin <kate@provokateurin.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/Comments/Comment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Comments/Comment.php b/lib/private/Comments/Comment.php index 3c44c02fe2e..c67358cc854 100644 --- a/lib/private/Comments/Comment.php +++ b/lib/private/Comments/Comment.php @@ -16,7 +16,7 @@ class Comment implements IComment { 'id' => '', 'parentId' => '0', 'topmostParentId' => '0', - 'childrenCount' => '0', + 'childrenCount' => 0, 'message' => '', 'verb' => '', 'actorType' => '', |