Merge pull request '[PR]: fix: import settings backup' (#10240) from naskya/calckey:fix/import-settings-backups into develop
Reviewed-on: https://codeberg.org/calckey/calckey/pulls/10240
This commit is contained in:
commit
001e31bfcd
1 changed files with 5 additions and 1 deletions
|
@ -173,7 +173,11 @@ function validate(profile: unknown): void {
|
||||||
if (!isObject(profile)) throw new Error("not an object");
|
if (!isObject(profile)) throw new Error("not an object");
|
||||||
|
|
||||||
// Check if unnecessary properties exist
|
// Check if unnecessary properties exist
|
||||||
if (Object.keys(profile).some((key) => !profileProps.includes(key)))
|
if (
|
||||||
|
Object.keys(profile).some(
|
||||||
|
(key) => !profileProps.includes(key) && key !== "host"
|
||||||
|
)
|
||||||
|
)
|
||||||
throw new Error("Unnecessary properties exist");
|
throw new Error("Unnecessary properties exist");
|
||||||
|
|
||||||
if (!profile.name) throw new Error("Missing required prop: name");
|
if (!profile.name) throw new Error("Missing required prop: name");
|
||||||
|
|
Loading…
Reference in a new issue