mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Correct comma operator use in appRouter
This commit is contained in:
parent
6a24de84a0
commit
a1132e9a9d
1 changed files with 1 additions and 1 deletions
|
@ -578,7 +578,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
|
|||
function showDirect(path) {
|
||||
return new Promise(function(resolve, reject) {
|
||||
resolveOnNextShow = resolve;
|
||||
resolve = page.show(baseUrl() + path);
|
||||
page.show(baseUrl() + path);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue