Added user buffers (buffers for followers, following, blocked and muted users for now)

This commit is contained in:
2022-11-13 22:17:28 -06:00
parent 2a0e73ad33
commit 035de92496
10 changed files with 216 additions and 29 deletions

View File

@@ -335,7 +335,7 @@ class BaseBuffer(base.Buffer):
toot.message.visibility.SetSelection(3)
response = toot.message.ShowModal()
if response == wx.ID_OK:
toot_data = toot.get_tweet_data()
toot_data = toot.get_data()
call_threaded(self.session.send_toot, toots=toot_data, visibility="direct")
if hasattr(toot.message, "destroy"):
toot.message.destroy()