[READ-ONLY] Mirror of https://github.com/FoxxMD/komodo-utilities. Small utilities to enhance Komodo
gotify komodo
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(ntfy): Fix missing Bearer prefix for token auth #2

FoxxMD (Dec 18, 2024, 3:01 PM UTC) b9417185 9b7ed9f8

+1 -1
+1 -1
notifiers/ntfy/program.ts
··· 92 92 password: NTFY_PASSWORD, 93 93 }; 94 94 } else if (NTFY_TOKEN !== undefined) { 95 - req.authorization = NTFY_TOKEN; 95 + req.authorization = `Bearer ${NTFY_TOKEN}`; 96 96 } 97 97 await publish(req); 98 98 } catch (e) {