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

Merge pull request #1039 from MrTimscampi/sonarqube-fixes-1

Sonarqube bug fixin' - Part 1: Phantom Bugs
This commit is contained in:
dkanada 2020-04-11 21:34:49 +09:00 committed by GitHub
commit a9c9957160
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 231 additions and 264 deletions

View file

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