From b906c1d36b2c8250011451add69426183d940814 Mon Sep 17 00:00:00 2001 From: Kai Date: Wed, 21 May 2025 16:20:35 -0500 Subject: [PATCH] add assignment for getReplies to PlatformComment Changelog: added --- app/src/main/assets/scripts/source.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/assets/scripts/source.js b/app/src/main/assets/scripts/source.js index b6b4ab6d..0aa817af 100644 --- a/app/src/main/assets/scripts/source.js +++ b/app/src/main/assets/scripts/source.js @@ -595,6 +595,8 @@ class PlatformComment { this.date = obj.date ?? 0; this.replyCount = obj.replyCount ?? 0; this.context = obj.context ?? {}; + if(obj.getReplies) + this.getReplies = obj.getReplies; } }