Added support for reply to topic comments

This commit is contained in:
2019-02-01 13:25:47 -06:00
parent 3a3623859b
commit 35fc287d55
3 changed files with 44 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ class displayPostInteractor(base.baseInteractor):
self.presenter.post_repost()
def on_reply(self, *args, **kwargs):
if hasattr(self.view, "repost"):
if hasattr(self.view, "repost") or not hasattr(self, "post_view"):
comment = self.view.comments.get_selected()
self.presenter.reply(comment)
else: