mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-15 22:32:06 +00:00
Fixed some tag reading errors in #1833.
This commit is contained in:
@@ -1440,7 +1440,7 @@ public class SWFInputStream implements AutoCloseable {
|
||||
|
||||
boolean doParse = true;
|
||||
|
||||
if (((parseTags && !parallel1 && doParse) || (tag.getId() == ExporterInfo.ID)) && (tag instanceof TagStub)) {
|
||||
if (((parseTags && !parallel1 && doParse) || (tag != null && tag.getId() == ExporterInfo.ID)) && (tag instanceof TagStub)) {
|
||||
tag = resolveTag((TagStub) tag, level, parallel, skipUnusualTags, lazy, true);
|
||||
}
|
||||
if (tag instanceof ExporterInfo) {
|
||||
|
||||
Reference in New Issue
Block a user