View Single Post
Old 12-21-2023, 08:44 PM   #570
bigwoof
Connoisseur
bigwoof began at the beginning.
 
Posts: 88
Karma: 18
Join Date: Jun 2020
Device: Boox Note Air3, don't use my kindle anymore
found the bug. The error is in this function in cc_update.py

Code:
    def update_collections_entry(self, coll_uuid, members):
        self.commands.append(
            {
                "update":
                    {
                        "type": "Collection",
                        "uuid": str(coll_uuid),
                        "members": members
                    }
            })
I need to change the update into an append now that I am breaking up the argument list for members. probably using something like this

https://stackoverflow.com/questions/...xt-row-sqlite3

Last edited by bigwoof; 12-21-2023 at 09:07 PM.
bigwoof is offline   Reply With Quote