This commit is contained in:
Clem 2023-07-11 19:00:27 +02:00
parent eea3ab9c74
commit 47a6e81998

View File

@ -213,7 +213,9 @@ export class ConfigService {
* Reads config YAML as string * Reads config YAML as string
*/ */
readRaw (): string { readRaw (): string {
return yaml.dump(this._store) // Scrub undefined values
const cleanStore = JSON.parse(JSON.stringify(this._store))
return yaml.dump(cleanStore)
} }
/** /**