add additional mentions to reply all
This commit is contained in:
parent
1d2a7de3a5
commit
1d2d13d26e
1 changed files with 2 additions and 0 deletions
|
@ -285,6 +285,8 @@ class Timeline(Gtk.Box):
|
|||
|
||||
def on_reply_all(self, action, param):
|
||||
replyuser = "@" + self.post_data.user.username + " "
|
||||
for mention in self.post_data.content.entities.mentions:
|
||||
replyuser += "@" + mention.text + " "
|
||||
self.emit('reply', self.post_data.id, replyuser)
|
||||
|
||||
def on_bookmark(self, action, param):
|
||||
|
|
Loading…
Reference in a new issue