fixed bug in fromEvents so only kind 1 are put in trees

This commit is contained in:
Vishal 2022-11-26 21:32:37 +05:30
parent 5c9468161a
commit ebbc1776c0

View File

@ -1062,6 +1062,10 @@ class Store {
print("In fromEvent: got evnet id $gCheckEventId");
}
if( tree.event.eventData.kind != 1) {
return;
}
// find its parent and then add this element to that parent Tree
String parentId = tree.event.eventData.getParent(tempChildEventsMap);