View Single Post
Old 12-21-2023, 08:44 PM   #570
bigwoof
Connoisseur
bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.bigwoof is less competitive than you.
 
Posts: 91
Karma: 14620
Join Date: Jun 2020
Device: Android devices via Samsung Phone and Boox Palma 2
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