Merge remote-tracking branch 'origin/GP-1-dragonmacher-help-fix'

This commit is contained in:
Ryan Kurtz 2024-10-10 06:21:26 -04:00
commit 81f93d3f23

View File

@ -178,6 +178,11 @@ public class LinkDatabase {
}
public String getIDForLink(String target) {
if (target.startsWith(JavaHelpValidator.EXTERNAL_PREFIX)) {
return null; // the validator handles this later
}
Path path = Paths.get(target);
Path file = Paths.get(target.split("#")[0]);