mastodon: Language should be automatically suggested for posts during creation, replies or when recovering from an error

This commit is contained in:
2024-12-31 18:51:00 -06:00
parent 0322939cba
commit 6b97c5123f
4 changed files with 14 additions and 11 deletions

View File

@@ -191,7 +191,7 @@ class ConversationListBuffer(BaseBuffer):
response = post.message.ShowModal()
if response == wx.ID_OK:
post_data = post.get_data()
call_threaded(self.session.send_post, reply_to=item.id, posts=post_data, visibility=visibility)
call_threaded(self.session.send_post, reply_to=item.id, posts=post_data, visibility=visibility, language=post.get_language())
if hasattr(post.message, "destroy"):
post.message.destroy()