Displaying articles from the attachments list in wall posts

This commit is contained in:
2019-12-05 16:28:01 -06:00
parent 1ef8c99c43
commit c83f7c8d94
2 changed files with 4 additions and 0 deletions

View File

@@ -350,6 +350,9 @@ class displayPostPresenter(base.basePresenter):
webbrowser.open_new_tab(url)
elif attachment["type"] == "poll":
a = poll.displayPollPresenter(session=self.session, poll=attachment, interactor=interactors.displayPollInteractor(), view=views.displayPoll())
elif attachment["type"] == "article":
output.speak(_("Opening Article in web browser..."), True)
webbrowser.open_new_tab(attachment["article"]["url"])
else:
log.debug("Unhandled attachment: %r" % (attachment,))