save list buffers after being created

This commit is contained in:
Manuel Cortez 2022-11-15 16:12:49 -06:00
parent f5328379e8
commit 252a93f82d
No known key found for this signature in database
GPG Key ID: 9E0735CA15EFE790

View File

@ -92,6 +92,8 @@ class listsController(object):
if self.dialog.lista.get_count() == 0: return
list = self.session.db["lists"][self.dialog.get_item()]
pub.sendMessage("createBuffer", buffer_type="ListBuffer", session_type=self.session.type, buffer_title=_("List for {}").format(list.name), parent_tab=self.lists_buffer_position, start=True, kwargs=dict(function="list_timeline", name="%s-list" % (list.name,), sessionObject=self.session, account=self.session.get_name(), bufferType=None, sound="list_tweet.ogg", list_id=list.id, include_ext_alt_text=True, tweet_mode="extended"))
self.session.db["other_buffers"]["lists"].append(list.id)
self.session.settings.write()
def subscribe(self, *args, **kwargs):
if self.dialog.lista.get_count() == 0: return