From a43f4b2c8f6a14607ff6963c103383d3fa9647ab Mon Sep 17 00:00:00 2001 From: altaf-creator Date: Mon, 29 Dec 2025 20:47:33 +0800 Subject: oh? --- backend/notif.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'backend') diff --git a/backend/notif.py b/backend/notif.py index 6c47844..59c6ec1 100644 --- a/backend/notif.py +++ b/backend/notif.py @@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS subscriptions ( def subscribe(data: PushSubscriptionData): cursor.execute(""" INSERT INTO subscriptions (endpoint, keys_p256dh, keys_auth) - VALUES (?, ?, ?, ?)""", (data.endpoint, data.keys["p256dh"], data.keys["auth"])) + VALUES (?, ?, ?)""", (data.endpoint, data.keys["p256dh"], data.keys["auth"])) conn.commit() return data.endpoint -- cgit v1.2.3