This commit is contained in:
Alex55 2026-03-24 18:35:37 +02:00
parent 559b07a0a5
commit 9c8476bd72
1 changed files with 2 additions and 0 deletions

View File

@ -161,6 +161,8 @@ def get_orders(page=1, page_size=25):
def get_order_content(order_id): def get_order_content(order_id):
conn = sqlite3.connect(DB_PATH)
cursor = conn.cursor() cursor = conn.cursor()
url = f"{BASE_URL}/orders/{order_id}/content" url = f"{BASE_URL}/orders/{order_id}/content"