@jussmor/commit-memory-mcp 0.3.8 → 0.3.9
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/dist/db/client.js +1 -1
- package/package.json +1 -1
package/dist/db/client.js
CHANGED
|
@@ -374,7 +374,7 @@ export function buildContextPack(db, options) {
|
|
|
374
374
|
const taskType = options.taskType ?? "general";
|
|
375
375
|
function runQuery(params) {
|
|
376
376
|
const clauses = [];
|
|
377
|
-
const values = [taskType
|
|
377
|
+
const values = [taskType];
|
|
378
378
|
if (params.includeDomain && options.domain) {
|
|
379
379
|
clauses.push("scope_domain = ?");
|
|
380
380
|
values.push(options.domain);
|
package/package.json
CHANGED