1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Update current route state for unhandled routes in app router

This commit is contained in:
Bill Thornton 2022-04-25 12:53:33 -04:00
parent 2e49d2db8b
commit ceb10e2877

View file

@ -123,6 +123,10 @@ class AppRouter {
}); });
} else { } else {
console.info('[appRouter] "%s" route not found', normalizedPath, location); console.info('[appRouter] "%s" route not found', normalizedPath, location);
this.currentRouteInfo = {
route: {},
path: normalizedPath + location.search
};
} }
} }