Skip to content

Commit

Permalink
🐛 fix sending [] instead of null in createCallLogForPhoneNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
sjfrhafe committed Oct 1, 2024
1 parent 16bdce2 commit 962d2c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/call-log.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class CallLogController {
`Skipping call log for call id ${req.body.id}`,
providerConfig.apiKey,
);
res.status(200).send([]);
res.status(200).send(null);
return;
}

Expand Down

0 comments on commit 962d2c8

Please sign in to comment.