From de6fec20cae18ff126d2c22120da71d1717afa15 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 14 Feb 2026 09:19:34 -0800 Subject: [PATCH] Feat: Include full URL in search notifications --- functions/[[path]].js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/[[path]].js b/functions/[[path]].js index f639839..94dbf61 100644 --- a/functions/[[path]].js +++ b/functions/[[path]].js @@ -59,7 +59,7 @@ export async function onRequest(context) { // Notify of a new search (Cache Miss) context.waitUntil(notify(env, { title: "New Search", - message: `Query: ${query} (Search #${count + 1} for ${ip})`, + message: `Query: ${query} (Search #${count + 1} for ${ip})\n${url.origin}/${path}`, tags: "mag", priority: 3 }));