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:
parent
dbfc1e27b4
commit
de0ae288cf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue