From 30a501911f9935747506d9611fbe2379b71e5198 Mon Sep 17 00:00:00 2001
From: Nathan Woodburn <github@nathan.woodburn.au>
Date: Fri, 7 Mar 2025 14:51:24 +1100
Subject: [PATCH] fix: Use correct creds

---
 hnslinks.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hnslinks.py b/hnslinks.py
index ac27863..3f217d6 100644
--- a/hnslinks.py
+++ b/hnslinks.py
@@ -110,7 +110,7 @@ def addDomain(params, authentication):
     if not os.path.exists("user_data/hnslinks.json"):
         return {"status": "Missing Varo API or instance"}
 
-    with open("user_data/varo.json", "r") as f:
+    with open("user_data/hnslinks.json", "r") as f:
         auth = json.load(f)
         if not auth:
             return {"status": "Missing Varo API or instance"}