feat: Add new BTC address and fix file type of proofs
All checks were successful
Build Docker / BuildImage (push) Successful in 42s

This commit is contained in:
2024-12-29 22:44:00 +11:00
parent fb376a4906
commit d651e3a20c
3 changed files with 5 additions and 5 deletions

View File

@@ -181,7 +181,7 @@ def removeTrailingSlash():
@app.route("/.well-known/wallets/<path:path>")
def wallet(path):
if path[0] == ".":
if path[0] == "." and 'proof' not in path:
return send_from_directory(
".well-known/wallets", path, mimetype="application/json"
)