Changing DB thing

This commit is contained in:
2025-10-26 09:36:33 -04:00
parent 04350045d3
commit e8264e80ce
7 changed files with 11 additions and 9 deletions

View File

@@ -27,7 +27,7 @@ headers = {"x-api-key": API_KEY, "Content-Type": "application/json"}
VISITED = {}
if __name__ == "__main__":
conn = sqlite3.connect("./visited.db")
conn = sqlite3.connect("./database/visited.db")
c = conn.cursor()
c.execute("select immich_id from visited")
rows = c.fetchall()