From 8bd2dbe326e7af8677992c0bf6fbeefd6c0cdcfd Mon Sep 17 00:00:00 2001 From: Francisco Salgueiro Date: Thu, 10 Oct 2024 23:47:39 +0100 Subject: [PATCH] fix puzzles location --- src/utils/puzzles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/puzzles.ts b/src/utils/puzzles.ts index f84792c9..3a1d567b 100644 --- a/src/utils/puzzles.ts +++ b/src/utils/puzzles.ts @@ -17,7 +17,7 @@ export interface Puzzle { async function getPuzzleDatabase(name: string): Promise { const appDataDirPath = await appDataDir(); - const path = await resolve(appDataDirPath, name); + const path = await resolve(appDataDirPath, "puzzles", name); return unwrap(await commands.getPuzzleDbInfo(path)); }