Skip to content

Commit 962d2c8

Browse files
committed
🐛 fix sending [] instead of null in createCallLogForPhoneNumber
1 parent 16bdce2 commit 962d2c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controllers/call-log.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class CallLogController {
4343
`Skipping call log for call id ${req.body.id}`,
4444
providerConfig.apiKey,
4545
);
46-
res.status(200).send([]);
46+
res.status(200).send(null);
4747
return;
4848
}
4949

0 commit comments

Comments
 (0)