diff --git a/src/de/mas/wiiu/jnus/NUSTitle.java b/src/de/mas/wiiu/jnus/NUSTitle.java index 799676a..cf4d29c 100644 --- a/src/de/mas/wiiu/jnus/NUSTitle.java +++ b/src/de/mas/wiiu/jnus/NUSTitle.java @@ -124,7 +124,7 @@ public class NUSTitle { .filter(e -> allowNotInPackage || !e.isNotInPackage()) // .flatMap(e -> { if (!e.isDir()) { - if (p.matcher(entry.getFullPath().replace("/", File.separator)).matches()) { + if (p.matcher(e.getFullPath().replace("/", File.separator)).matches()) { return Stream.of(entry); } else { return Stream.empty();