Skip to content

Commit 702b424

Browse files
committed
fix(pm): write the near-miss dedupe separator as its escape text, not the byte
An editing tool materialised the escape into a real 0x01 while the key was written — the slip `check-nul-bytes` exists for. Byte-identical at runtime. Claude-Session: https://claude.ai/code/session_01Gqi43smmqjJ5sUrhfoPeKu Co-authored-by: Claude <noreply@anthropic.com>
1 parent f74be95 commit 702b424

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/pm/check-half-states.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1382,7 +1382,7 @@ export function ownershipMarkerNearMisses(commentRows) {
13821382
if (!hit) continue;
13831383
if (line.slice(hit[0].length).trim() === '') break;
13841384
const prefix = hit[0].trim();
1385-
const key = `${form.id}${prefix}`;
1385+
const key = `${form.id}\u0001${prefix}`;
13861386
if (!seen.has(key)) {
13871387
seen.add(key);
13881388
out.push({

0 commit comments

Comments
 (0)