mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-17 23:45:29 -05:00
(fix): Fix wrong reference to config packages
This commit is contained in:
parent
f504c6c181
commit
71a22be8ca
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ class LocalStorage {
|
|||
|
||||
storages[this.config.storage] = true;
|
||||
if (this.config.packages) {
|
||||
Object.keys(this.packages || {}).map( (pkg) => {
|
||||
Object.keys(this.config.packages || {}).map( (pkg) => {
|
||||
if (this.config.packages[pkg].storage) {
|
||||
storages[this.config.packages[pkg].storage] = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue