fix(xo-server/importConfig): fix this._app.clean is not a function

Fixes #5836
This commit is contained in:
Julien Fontanet 2021-07-05 17:57:47 +02:00
parent 096f443b56
commit 138a3673ce

View File

@ -77,6 +77,6 @@ export default class ConfigManagement {
await manager.importer(data) await manager.importer(data)
} }
} }
await this._app.clean() await this._app.hooks.clean()
} }
} }