diff options
author | Eric Bailey <git@esb.lol> | 2024-06-11 16:54:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-11 14:54:47 -0700 |
commit | a4ca4db35cbe611a73150eac808fe42c4a6fc8e2 (patch) | |
tree | de3a108cce46f7b5245ac3632151e8304fbe7e50 /src | |
parent | 3d4b390a8a9c4a7c52354a0c7bd4bc0a8e12f9f8 (diff) | |
download | voidsky-a4ca4db35cbe611a73150eac808fe42c4a6fc8e2.tar.zst |
Stringify path error (#4379)
Diffstat (limited to 'src')
-rw-r--r-- | src/state/persisted/store.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state/persisted/store.ts b/src/state/persisted/store.ts index ca023a636..f740126c4 100644 --- a/src/state/persisted/store.ts +++ b/src/state/persisted/store.ts @@ -28,7 +28,7 @@ export async function read(): Promise<Schema | undefined> { code: e.code, // @ts-ignore exists on some types expected: e?.expected, - path: e.path, + path: e.path?.join('.'), })) || [] logger.error(`persisted store: data failed validation on read`, {errors}) return undefined |