We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c96f52 commit c417830Copy full SHA for c417830
core/ui/src/main/java/org/phoebus/ui/help/OpenHelp.java
@@ -63,7 +63,8 @@ public Void call()
63
public static String determineHelpLocation()
64
{
65
if (!Preferences.documentation_location.isEmpty()) {
66
- return Preferences.documentation_location;
+ String suffix = Preferences.documentation_location.endsWith("/") ? "index.html" : "/index.html";
67
+ return Preferences.documentation_location + suffix;
68
}
69
70
final File phoenix_install = Locations.install();
0 commit comments