Skip to content

Commit 1e5b446

Browse files
committed
fix for empty lists
1 parent ebe934f commit 1e5b446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/project-fetcher-hoc.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function protobufToJson(buffer) {
119119
}
120120

121121
for (const list in target.lists) {
122-
newTarget.lists[list] = [target.lists[list].name, target.lists[list].value];
122+
newTarget.lists[list] = [target.lists[list].name, target.lists[list].value || []];
123123
}
124124

125125
for (const broadcast in target.broadcasts) {

0 commit comments

Comments
 (0)