fix crash when folder is present in ig folder

This commit is contained in:
Vadim Peretokin 2021-03-07 11:58:18 +01:00
parent 5364606cb5
commit 776811813e
1 changed files with 3 additions and 3 deletions

View File

@ -562,7 +562,7 @@ public class IgLoader {
for (File ff : f.listFiles()) {
if (ff.isDirectory() && recursive) {
res.putAll(scanDirectory(ff, true));
} else if (!isIgnoreFile(ff)) {
} else if (!ff.isDirectory() && !isIgnoreFile(ff)) {
Manager.FhirFormat fmt = ResourceChecker.checkIsResource(getContext(), isDebug(), ff.getAbsolutePath());
if (fmt != null) {
res.put(Utilities.changeFileExt(ff.getName(), "." + fmt.getExtension()), TextFile.fileToBytes(ff.getAbsolutePath()));