Merge branch 'fix-get-replies' into 'master'

Fix getReplies in source.js

See merge request videostreaming/grayjay!102
This commit is contained in:
Kai DeLorenzo 2025-05-21 21:21:38 +00:00
commit 6962a0547a

View file

@ -595,6 +595,8 @@ class PlatformComment {
this.date = obj.date ?? 0; this.date = obj.date ?? 0;
this.replyCount = obj.replyCount ?? 0; this.replyCount = obj.replyCount ?? 0;
this.context = obj.context ?? {}; this.context = obj.context ?? {};
if(obj.getReplies)
this.getReplies = obj.getReplies;
} }
} }