fixing smaller problems in apprise and mattermost

This commit is contained in:
orangecoding
2025-09-27 18:07:48 +02:00
parent 9654e56846
commit a47fa41278
2 changed files with 3 additions and 3 deletions

View File

@@ -13,10 +13,10 @@ export const send = ({ serviceName, newListings, notificationConfig, jobKey }) =
return fetch(webhook, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: {
body: JSON.stringify({
channel: channel,
text: message,
},
}),
});
};
export const config = {