From 18b89f19ecdd32e7dc8b5564b258a67165e680ca Mon Sep 17 00:00:00 2001 From: Tristan Lee Date: Mon, 28 Feb 2022 09:00:41 -0600 Subject: [PATCH] made info dict more consistent between video and comment objects --- polyphemus/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/polyphemus/base.py b/polyphemus/base.py index 7966c3e..7cce775 100644 --- a/polyphemus/base.py +++ b/polyphemus/base.py @@ -165,6 +165,7 @@ class OdyseeComment: self.info = { 'text' : full_comment_info['comment'], 'created' : full_comment_info['timestamp'], + 'claim_id' : full_comment_info.get('comment_id'), 'video_claim_id' : full_comment_info['claim_id'], 'channel_id' : full_comment_info['channel_id'], 'channel_name' : full_comment_info['channel_name'],