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) {
this.packagesList = this.packagesList.filter((p) => {
this.#packagesList = this.#packagesList.filter((p) => {
return p.name !== pkg.name;
});
this.packagesList.push(pkg);
this.#packagesList.push(pkg);
}
removeUrl(url) {