From 66e9bbe47ce6c8b9ec49a508ef8f9006ac223435 Mon Sep 17 00:00:00 2001 From: Ross Kukulinski Date: Sun, 21 Dec 2025 07:54:08 -0800 Subject: [PATCH] Remove quantity field from Item._encode() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 'quantity' field does not exist in the ListItem protobuf schema (see lib/definitions.json). Including it in _encode() causes protobuf encoding errors when calling methods like removeItem() that need to encode the item. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- lib/item.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/item.js b/lib/item.js index 2877dd8..791dfc8 100644 --- a/lib/item.js +++ b/lib/item.js @@ -68,7 +68,6 @@ class Item { identifier: this._identifier, listId: this._listId, name: this._name, - quantity: this._quantity, details: this._details, checked: this._checked, category: this._category,