@rethinkingstudio/clawpilot 2.1.21-beta.3 → 2.1.21-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rethinkingstudio/clawpilot",
3
- "version": "2.1.21-beta.3",
3
+ "version": "2.1.21-beta.4",
4
4
  "description": "ClawAI relay client for Mac mini",
5
5
  "type": "module",
6
6
  "bin": {
@@ -147,7 +147,7 @@ def read_session_history_from_json(session_id: Optional[str]) -> List[Dict[str,
147
147
 
148
148
 
149
149
  def read_session_history(session_id: Optional[str], session_db: Optional[SessionDB]) -> List[Dict[str, Any]]:
150
- if os.environ.get("CLAWPILOT_HERMES_BRIDGE_SESSIONDB_HISTORY") == "1":
150
+ if os.environ.get("CLAWPILOT_HERMES_BRIDGE_DISABLE_SESSIONDB_HISTORY") != "1":
151
151
  from_db = read_session_history_from_db(session_id, session_db)
152
152
  if from_db:
153
153
  return from_db