Refactor: Update ntfy title with domain

This commit is contained in:
2026-02-18 14:39:10 -08:00
parent 27e2758a20
commit 48e29ecfe6

View File

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