We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4ed90 commit 246ec20Copy full SHA for 246ec20
src/lib/project-fetcher-hoc.jsx
@@ -131,6 +131,17 @@ function protobufToJson(buffer) {
131
}
132
133
for (const block in target.blocks) {
134
+ if (target.blocks[block].is_variable_reporter) {
135
+ newTarget.blocks[block] = [
136
+ target.blocks[block].varReporterBlock.first_num,
137
+ target.blocks[block].varReporterBlock.name,
138
+ target.blocks[block].varReporterBlock.id,
139
+ target.blocks[block].varReporterBlock.second_num,
140
+ target.blocks[block].varReporterBlock.third_num,
141
+ ]
142
+ continue;
143
+ }
144
+
145
newTarget.blocks[block] = {
146
opcode: target.blocks[block].opcode,
147
next: target.blocks[block].next || null,
0 commit comments