Fixed JSON version issue in commit message

This commit is contained in:
Nathan Schneider
2025-11-25 13:30:11 -05:00
parent b541f6049e
commit aac6334380

View File

@@ -68,7 +68,7 @@
// Create commit message
const protocolName = data.metadata.protocol || 'Unknown Protocol';
const analystName = data.metadata.analyst || 'Anonymous';
const commitMessage = `Bicorder reading: ${protocolName} by ${analystName} | Source: Protocol Bicorder v${APP_VERSION}`;
const commitMessage = `Bicorder reading: ${protocolName} by ${analystName} | Source: Protocol Bicorder v${data.version}`;
// Prepare the content (base64 encoded)
const jsonContent = JSON.stringify(data, null, 2);