aboutsummaryrefslogtreecommitdiff
path: root/code/cogs/newaccount.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/cogs/newaccount.py')
-rw-r--r--code/cogs/newaccount.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/cogs/newaccount.py b/code/cogs/newaccount.py
index b341147..54d53b6 100644
--- a/code/cogs/newaccount.py
+++ b/code/cogs/newaccount.py
@@ -20,7 +20,7 @@ class NewAccount(commands.Cog):
async def newaccount(self, interaction: discord.Interaction) -> None:
"""Create a new temporary Jellyfin account"""
# Make sure the user doesn't already have an account
- db = sqlite3.connect("cordarr.db")
+ db = sqlite3.connect("data/cordarr.db")
cursor = db.cursor()
cursor.execute(
"SELECT * FROM jellyfin_accounts WHERE user_id = ?",