From 671ade1fe04f5eea81931c1e8c483c1842822c76 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 4 Apr 2019 10:21:43 +0200 Subject: [PATCH] Fix the getFSTEntriesByRegEx functions --- src/de/mas/wiiu/jnus/NUSTitle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();