Make sure default.json is read from correct loc

This commit is contained in:
Andrew 2024-02-15 07:15:53 -05:00
parent 8e199dcd67
commit 879aa8c54c

View File

@ -1112,7 +1112,7 @@ class Helpers:
return os.path.normpath(path) return os.path.normpath(path)
def find_default_password(self): def find_default_password(self):
default_file = os.path.join(self.root_dir, "default.json") default_file = os.path.join(self.root_dir, "app", "config", "default.json")
data = {} data = {}
if Helpers.check_file_exists(default_file): if Helpers.check_file_exists(default_file):