Skip to content

Commit

Permalink
Fix 404s for overview page, semantic model tabs and add-on store (ope…
Browse files Browse the repository at this point in the history
…nhab#2678)

Fixes openhab#2665.

Signed-off-by: Florian Hotze <[email protected]>
  • Loading branch information
florian-h05 authored Jul 18, 2024
1 parent 3d27333 commit fce76c8
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ public class UIErrorPageServlet extends HttpServlet {
private static final long serialVersionUID = 6472170444750947727L;

private static final String INDEX_FILE = "/app/index.html";
private static final Set<String> VALID_ROUTE_SEGMENTS = Set.of("about", "analyzer", "developer", "home", "page",
"profile", "res", "settings", "setup-wizard");
private static final Set<String> VALID_ROUTE_SEGMENTS = Set.of("about", "addons", "analyzer", "developer",
"equipment", "home", "locations", "overview", "page", "profile", "properties", "res", "settings",
"setup-wizard");

private final Logger logger = LoggerFactory.getLogger(UIErrorPageServlet.class);

Expand Down

0 comments on commit fce76c8

Please sign in to comment.