diff --git a/src/com/jpexs/decompiler/flash/SWFInputStream.java b/src/com/jpexs/decompiler/flash/SWFInputStream.java index 91011483e..a5045f1f9 100644 --- a/src/com/jpexs/decompiler/flash/SWFInputStream.java +++ b/src/com/jpexs/decompiler/flash/SWFInputStream.java @@ -1091,8 +1091,13 @@ public class SWFInputStream implements AutoCloseable { Future future = executor.submit(new TagResolutionTask((TagStub) tag, di, level, parallel, skipUnusualTags)); futureResults.add(future); } else { - Future future = new ImmediateFuture(tag); + Future future = new ImmediateFuture(tag); futureResults.add(future); + if (!(tag instanceof TagStub)) { + if (di != null) { + di.name = tag.getName(); + } + } } if (tag.getId() == EndTag.ID) {