From 89fbc830f1affc1ff951c87f8340a7473dba8a71 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 28 Feb 2019 21:53:09 +0100 Subject: [PATCH] [NUSTitle] Fix bug. --- 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 7ebcda2..e0972fe 100644 --- a/src/de/mas/wiiu/jnus/NUSTitle.java +++ b/src/de/mas/wiiu/jnus/NUSTitle.java @@ -80,7 +80,7 @@ public class NUSTitle { .filter(e -> allowNotInPackage || !e.isNotInPackage()) // .flatMap(e -> { if (!e.isDir()) { - return Stream.empty(); + return Stream.of(e); } return getAllFSTEntryChildrenAsStream(e, allowNotInPackage); });