From 8d6c6b869147343f81c3040b8985629fd403c59c Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 4 Apr 2019 10:23:04 +0200 Subject: [PATCH] Fix just another bug in getFSTEntriesByRegEx --- 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 cf4d29c..3622baf 100644 --- a/src/de/mas/wiiu/jnus/NUSTitle.java +++ b/src/de/mas/wiiu/jnus/NUSTitle.java @@ -125,7 +125,7 @@ public class NUSTitle { .flatMap(e -> { if (!e.isDir()) { if (p.matcher(e.getFullPath().replace("/", File.separator)).matches()) { - return Stream.of(entry); + return Stream.of(e); } else { return Stream.empty(); }