From ea4ae281ebe300a780fbe8ba3ee4a5aafb82d7e0 Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 14 Sep 2023 16:57:19 +0300 Subject: [PATCH] add missed comment value to the feed --- src/crontab/export/feed.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/crontab/export/feed.php b/src/crontab/export/feed.php index 3112694..82f64ce 100644 --- a/src/crontab/export/feed.php +++ b/src/crontab/export/feed.php @@ -364,10 +364,11 @@ try { $comments[] = (object) [ - 'magnetCommentId' => $comment->magnetCommentId, + 'magnetCommentId' => $comment->magnetCommentId, 'userId' => $comment->userId, 'magnetId' => $comment->magnetId, 'timeAdded' => $comment->timeAdded, + 'value' => $comment->value ]; } }