Fix exported settings being not importable

This commit is contained in:
naskya 2023-06-01 07:55:59 +09:00
parent 618042c3e3
commit 151f5e355d
No known key found for this signature in database
GPG Key ID: 164DFF24E2D40139
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ function validate(profile: unknown): void {
if (!isObject(profile)) throw new Error("not an object");
// 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");
if (!profile.name) throw new Error("Missing required prop: name");