Fix 404s for overview page, semantic model tabs and add-on store (#2678)

Fixes #2665.

Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
(cherry picked from commit fce76c81fe)
4.2.x
Florian Hotze 2024-07-18 11:47:11 +02:00
parent a2c62bd6de
commit bd88bca3b1
No known key found for this signature in database
GPG Key ID: 8EF0C2AAF35F4FC4
1 changed files with 3 additions and 2 deletions

View File

@ -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);