summaryrefslogtreecommitdiff
path: root/backend/main.py
diff options
context:
space:
mode:
authoraltaf-creator <dev@altafcreator.com>2025-12-29 21:30:51 +0800
committeraltaf-creator <dev@altafcreator.com>2025-12-29 21:30:51 +0800
commit51ca2870c240d96c08ffe5655c4035f0f6bc10db (patch)
tree9b72db0ba66fd7707e2ba7237d9e4995ffd19f0c /backend/main.py
parent16c3515d1ad083b3c2c9ec273fe58577aa16e091 (diff)
changes to domain cookie
Diffstat (limited to 'backend/main.py')
-rw-r--r--backend/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/main.py b/backend/main.py
index a507303..a3e209d 100644
--- a/backend/main.py
+++ b/backend/main.py
@@ -457,5 +457,5 @@ def uri_to_information(data: InformationRequestData, response: fastapi.Response,
@app.post("/notif_subscribe")
def notif_subscribe(data: notif.PushSubscriptionData, response: fastapi.Response):
endpoint = notif.subscribe(data)
- response.set_cookie("subscription_endpoint", endpoint, domain=".altafcreator.com")
+ response.set_cookie("subscription_endpoint", endpoint, domain=".laundryweb.altafcreator.com")
response.status_code = fastapi.status.HTTP_200_OK