Skip to content

Commit

Permalink
#23296 Bug: WYSIWYG NPE if it finds an invalid data-elements
Browse files Browse the repository at this point in the history
  • Loading branch information
wezell committed Nov 23, 2022
1 parent 9e883eb commit 43630f8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ private static Optional<Folder> resolveWithCurrentValue(
APILocator.getFolderAPI()
.findFolderByPath(identifier.getParentPath(), identifier.getHostId(), APILocator.systemUser(), false)
);
} catch (DotDataException | DotSecurityException e) {
} catch (Exception e) {
Logger.debug(BrowserUtil.class,e.getMessage(),e);
return Optional.empty();
}
} else {
Expand Down

0 comments on commit 43630f8

Please sign in to comment.