diff --git a/hypha/VERSION b/hypha/VERSION index f57a1d38..7f905de2 100644 --- a/hypha/VERSION +++ b/hypha/VERSION @@ -1,3 +1,3 @@ { - "version": "0.20.34.pre3" + "version": "0.20.34" } diff --git a/hypha/core/store.py b/hypha/core/store.py index 7233f19b..48077259 100644 --- a/hypha/core/store.py +++ b/hypha/core/store.py @@ -258,7 +258,7 @@ async def upgrade(self): workspaces = await self.get_all_workspace() logger.info("Upgrading workspace bookmarks for version < 0.20.34") for workspace in workspaces: - workspace.config["bookmarks"] = workspace.config.get("bookmarks") or {} + workspace.config["bookmarks"] = workspace.config.get("bookmarks") or [] for bookmark in workspace.config["bookmarks"]: if "type" in bookmark: bookmark_type = bookmark["type"]