diff --git a/lbry/schema/support.py b/lbry/schema/support.py index 4e5e1ba6e..9a9bb599d 100644 --- a/lbry/schema/support.py +++ b/lbry/schema/support.py @@ -13,3 +13,11 @@ class Support(Signable): @emoji.setter def emoji(self, emoji: str): self.message.emoji = emoji + + @property + def comment(self) -> str: + return self.message.comment + + @comment.setter + def comment(self, comment: str): + self.message.comment = comment