add assignment for getReplies to PlatformComment

Changelog: added
This commit is contained in:
Kai 2025-05-21 16:20:35 -05:00
commit b906c1d36b
No known key found for this signature in database

View file

@ -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;
}
}