You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a possibility that we could also use async/await with this.
Finally, the Slack adapter has seen initial code to support Coffeescript 2, but it was reverted later. There does seem to be some movement on this though, because the Slack adapter not supporting Coffeescript 2 means that we are pinning against Coffeescript 1 (via the coffee-script package), and that is holding back updates for other Hubot plugins.
The text was updated successfully, but these errors were encountered:
Our Slack adapter automatically chunks up messages that are "too large" (>7900 characters) and sends the message chunks separately, scheduling the next chunk to send after a 300ms delay:
But, the Slack plugin for Hubot now supports passing a callback as the last "message" of the
messages
parameter:That means that we should be able to update the Slack adapter to use the
adapter.send()
function and utilize the callback function:There's a possibility that we could also use
async/await
with this.Finally, the Slack adapter has seen initial code to support Coffeescript 2, but it was reverted later. There does seem to be some movement on this though, because the Slack adapter not supporting Coffeescript 2 means that we are pinning against Coffeescript 1 (via the
coffee-script
package), and that is holding back updates for other Hubot plugins.The text was updated successfully, but these errors were encountered: