From f409623ae09d68d5e6da1c984e7f79569f063d59 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 10 Oct 2025 23:25:42 +0200 Subject: [PATCH] NO FUCKING FALLBACKS GOD DAMN YOU --- repositories/database.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/repositories/database.go b/repositories/database.go index 9653a33..778fbba 100644 --- a/repositories/database.go +++ b/repositories/database.go @@ -25,9 +25,6 @@ type Database struct { func NewDatabase() (*Database, error) { // Get database path from options dbPath := options.GlobalOptions.DBPath - if dbPath == "" { - dbPath = "eve-pi.db" - } // Ensure directory exists dir := filepath.Dir(dbPath)