Fix: ntfy title emoji on delete

This commit is contained in:
2025-11-10 13:34:13 -08:00
parent 647d6193fb
commit 266884a652

View File

@@ -1,9 +1,9 @@
const ntfy = (env,topic,tags,msg,p=2) =>
const ntfy = (env,topic,title,msg,p=2) =>
env.NTFY_TOPIC ?
fetch(`https://ntfy.sh/${topic}`,{
method:"POST",
headers:{
"Title":tags,
"Title":`🗑️ ${title}`,
"Priority":String(p),
"Content-Type":"text/plain"
},