-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
send_card
is only in-thread while send_stream_request
is only in-channel
#93
Comments
Had another look at this after upgrading to Errbot 6.2.0, and when attempting to provide @botcmd
def hello(self, msg, args):
"""Say hello to someone"""
return_msg = Card(
to=msg.frm,
title="Hello, world",
parent=msg.parent if msg.parent else None,
)
self._bot.send_card(return_msg) ... I get an error stating that
Trying to only use
As a side note it seems strange that the default behavior of Also note that
|
send_card
now only reply-in-threadssend_card
is only in-thread while send_stream_request
is only in-channel
send_card
(andsend_stream_request
) used to not reply in-thread (Errbot #1549), but within the last few monthssend_card
is suddenly only reply in-thread when invoked.As noted by @nzlosh this repo have recently made changes to its
send_card
implimentation:The text was updated successfully, but these errors were encountered: