fix: Update login page to verify password instead of opening as readonly
All checks were successful
Build Docker / Build Image (push) Successful in 49s

This commit is contained in:
2025-01-29 13:59:39 +11:00
parent db5e672d7b
commit 9c32ec788e
7 changed files with 37 additions and 11 deletions

View File

@@ -126,7 +126,6 @@ def getPluginData(pluginStr: str):
# Check if the plugin is in customPlugins
if pluginStr.startswith("customPlugins"):
# Get git url for dir
print(f"cd customPlugins/{pluginStr.split('/')[-2]} && git remote get-url origin")
url = subprocess.check_output(f"cd customPlugins/{pluginStr.split('/')[-2]} && git remote get-url origin", shell=True).decode("utf-8").strip()
info["source"] = url