Fix binary bundling of delta spread

This commit is contained in:
D. Berge
2025-08-03 13:49:55 +02:00
parent 11e84f47eb
commit 67dcc2922b

View File

@@ -136,7 +136,7 @@ function bundle (json, opts = {}) {
});
values.push({
// Spread
key: el => (el.meta?.raw?.smsrc?.spread ?? 0) * 10,
key: el => (el.meta?.raw?.smsrc?.spread ?? 0), // Spread is already × 10
type: Uint8Array
});