-
-
Notifications
You must be signed in to change notification settings - Fork 286
Open
Labels
bugSomething isn't workingSomething isn't working
Description
I use libredwg-web to read the attached dwg file. Zero entities returned for block named 'L9zhcz'. I debugged into code and found 'zero' retuned when calling get_first_owned_entity.
let next = libredwg.get_first_owned_entity(obj);
while (next) {
const entity = converter.convert(next);
if (entity) {
entity.ownerBlockRecordSoftId = ownerHandle;
entities.push(entity);
}
next = libredwg.get_next_owned_entity(obj, next);
}
return entities;
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working