From e3da07141c0bdda0fea7b4f60499a2e3cc896a50 Mon Sep 17 00:00:00 2001 From: Zamitto <167933696+zamitto@users.noreply.github.com> Date: Tue, 21 May 2024 16:32:29 -0300 Subject: [PATCH] hardcoding db path --- src/main/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/constants.ts b/src/main/constants.ts index 4d43518b..17eea7ca 100644 --- a/src/main/constants.ts +++ b/src/main/constants.ts @@ -22,7 +22,7 @@ export const defaultDownloadsPath = app.getPath("downloads"); export const databasePath = path.join( app.getPath("appData"), - app.getName(), + "hydra", "hydra.db" );