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

Fix private method access in app router

This commit is contained in:
Bill Thornton 2022-04-22 14:30:05 -04:00
parent dbfc1e27b4
commit de0ae288cf

View file

@ -426,7 +426,7 @@ class AppRouter {
} else if (route.roles) { } else if (route.roles) {
this.#validateRoles(apiClient, route.roles).then(() => { this.#validateRoles(apiClient, route.roles).then(() => {
callback(); callback();
}, this.#beginConnectionWizard); }, this.#beginConnectionWizard.bind(this));
return; return;
} }
} }