fix: Use single quote in sign message and reduce test versions
Some checks failed
Build Docker / Build Images (map[dockerfile:Dockerfile.hsd tag_suffix:-hsd target:hsd]) (push) Successful in 49s
Build Docker / Build Images (map[dockerfile:Dockerfile tag_suffix: target:default]) (push) Successful in 53s
Test Python Compatibility / Python-Compatibility (3.10) (push) Successful in 1m45s
Test Python Compatibility / Python-Compatibility (3.13) (push) Successful in 1m44s
Test Python Compatibility / Python-Compatibility (3.8) (push) Failing after 1m24s
Some checks failed
Build Docker / Build Images (map[dockerfile:Dockerfile.hsd tag_suffix:-hsd target:hsd]) (push) Successful in 49s
Build Docker / Build Images (map[dockerfile:Dockerfile tag_suffix: target:default]) (push) Successful in 53s
Test Python Compatibility / Python-Compatibility (3.10) (push) Successful in 1m45s
Test Python Compatibility / Python-Compatibility (3.13) (push) Successful in 1m44s
Test Python Compatibility / Python-Compatibility (3.8) (push) Failing after 1m24s
This commit is contained in:
@@ -9,7 +9,7 @@ jobs:
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.13']
|
||||
python-version: ['3.8', '3.10', '3.13']
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
|
||||
@@ -13,7 +13,6 @@ import signal
|
||||
import sys
|
||||
import threading
|
||||
import sqlite3
|
||||
from functools import wraps
|
||||
|
||||
|
||||
dotenv.load_dotenv()
|
||||
|
||||
2
main.py
2
main.py
@@ -849,7 +849,7 @@ def signMessage(domain):
|
||||
signedMessage = account_module.signMessage(request.cookies.get("account"),domain,message)
|
||||
if signedMessage["error"] != None:
|
||||
return redirect("/manage/" + domain + "?error=" + signedMessage["error"])
|
||||
content += f"Signature:<br><code>{signedMessage["result"]}</code><br><br>"
|
||||
content += f"Signature:<br><code>{signedMessage['result']}</code><br><br>"
|
||||
|
||||
data = {
|
||||
"domain": domain,
|
||||
|
||||
Reference in New Issue
Block a user