Skip to content

Commit

Permalink
fix puzzles location
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscoBSalgueiro committed Oct 10, 2024
1 parent a203b5a commit 8bd2dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/puzzles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface Puzzle {

async function getPuzzleDatabase(name: string): Promise<PuzzleDatabaseInfo> {
const appDataDirPath = await appDataDir();
const path = await resolve(appDataDirPath, name);
const path = await resolve(appDataDirPath, "puzzles", name);
return unwrap(await commands.getPuzzleDbInfo(path));
}

Expand Down

0 comments on commit 8bd2dbe

Please sign in to comment.