Fix: ntfy title emoji on update/analytics

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

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"
},