diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-03-07 23:08:56 +0000 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2024-03-07 23:08:56 +0000 |
| commit | 3faf1ec00ba8a96b257ed23586e5d048b037e7b6 (patch) | |
| tree | dc547374b3e7bfa422e043e5b9c99fc2e527bda2 /src | |
| parent | 66a30af77788361a569f8786e50f6afacf937a68 (diff) | |
syntax error
Diffstat (limited to 'src')
| -rw-r--r-- | src/app.js | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -32,8 +32,9 @@ app.post('/sms', (req, res) => { const twiml = new MessagingResponse(); twiml.message( getSubscriptions() - .map(({ name, number }) => `${name} (${number})`)) - .join(', '); + .map(({ name, number }) => `${name} (${number})`) + .join(', ') + ); res.type('text/xml').send(twiml.toString()); return; } |
