googleworkspace / google-chat-samples

Chat Bot Samples for Google Chat.
https://developers.google.com/chat/concepts/apps
Apache License 2.0
488 stars 249 forks source link

fix: failures of preview-link in Node.js runtime #269

Closed PierrickVoulet closed 7 months ago

PierrickVoulet commented 7 months ago
vinay-google commented 7 months ago

Instead of having the return statement on its own line, we can just do it wherever we are either doing res.send or res.json. For example:

return res.send('Hello! This function is meant to be used in a Google Chat Space.');
PierrickVoulet commented 7 months ago

Instead of having the return statement on its own line, we can just do it wherever we are either doing res.send or res.json. For example:

return res.send('Hello! This function is meant to be used in a Google Chat Space.');

Agreed and done! I also added returns even for latest statements for consistency and best practice.