Revert: Update notify.js

This commit is contained in:
2026-02-18 14:31:48 -08:00
parent 971ccca28b
commit 27e2758a20

View File

@@ -6,9 +6,10 @@ export function notify(msg, priority = 3, tags = []) {
method: 'POST', method: 'POST',
body: msg, body: msg,
headers: { headers: {
Title: 'us.proxy.sune.chat', Title: 'Sune Proxy',
Priority: `${priority}`, Priority: `${priority}`,
Tags: tags.join(','), Tags: tags.join(','),
}, },
}).catch(e => console.error('ntfy failed:', e)) }).catch(e => console.error('ntfy failed:', e))
} }