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

Fix suggestions

This commit is contained in:
MrTimscampi 2020-08-16 15:46:29 +02:00
parent 645668454a
commit 7756b3164b
2 changed files with 2 additions and 4 deletions

View file

@ -73,11 +73,11 @@ import pluginManager from 'pluginManager';
} }
addPackage(pkg) { addPackage(pkg) {
this.packagesList = this.packagesList.filter((p) => { this.#packagesList = this.#packagesList.filter((p) => {
return p.name !== pkg.name; return p.name !== pkg.name;
}); });
this.packagesList.push(pkg); this.#packagesList.push(pkg);
} }
removeUrl(url) { removeUrl(url) {

View file

@ -135,8 +135,6 @@ import globalize from 'globalize';
})[0]; })[0];
} }
console.dir(plugin);
var url = plugin.baseUrl + '/' + path; var url = plugin.baseUrl + '/' + path;
if (addCacheParam) { if (addCacheParam) {