Skip to content

Commit

Permalink
SM03944 suppression fix (#4654)
Browse files Browse the repository at this point in the history
Co-authored-by: Tracy Boehrer <[email protected]>
  • Loading branch information
tracyboehrer and Tracy Boehrer authored Apr 25, 2024
1 parent e008ef0 commit de09867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/botbuilder/src/channelServiceRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ export class ChannelServiceRoutes {
} else {
let requestData = '';
// eslint-disable-next-line prettier/prettier
req.on('data', (chunk) => { // lgtm[js/stack-trace-exposure]
req.on('data', (chunk) => { // CodeQL [SM1524] validation of the data is being made in the 'end' event
requestData += chunk;
});
req.on('end', () => {
Expand Down

0 comments on commit de09867

Please sign in to comment.