1
0
Fork 0
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:
MrTimscampi 2020-04-06 23:43:03 +02:00
parent 6a24de84a0
commit a1132e9a9d

View file

@ -578,7 +578,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'layoutManager', 'skinM
function showDirect(path) { function showDirect(path) {
return new Promise(function(resolve, reject) { return new Promise(function(resolve, reject) {
resolveOnNextShow = resolve; resolveOnNextShow = resolve;
resolve = page.show(baseUrl() + path); page.show(baseUrl() + path);
}); });
} }