@@ -1169,7 +1169,7 @@ export class Assembler {
const bytes = [];
while (true) {
const b = x & 0x7f;
x >>= 7;
x >>>= 7;
if (x == 0) {
bytes.push(b);
return bytes;
The note is not visible to the blocked user.